appendAdLink method
Implementation
List<Widget>? appendAdLink() {
if (canShowRemoveAdLink) {
return [
kFastVerticalSizedBox16,
// Using Align in order to avoid stretching the ad link.
Align(
alignment: Alignment.bottomLeft,
child: FastGoodbyeAdLink(onTap: widget.onRemoveAdLinkTap),
),
];
}
return null;
}