buildAdContent method

Widget buildAdContent(
  1. BuildContext context
)

Implementation

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

  return buildLargeAdContent(context);
}