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