buildAdContent method
Implementation
Widget buildAdContent(BuildContext context) {
if (adSize == FastAdSize.small) {
return buildSmallAdContent(context);
} else if (adSize == FastAdSize.medium) {
return buildMediumAdContent(context);
}
return buildLargeAdContent(context);
}