getBannerAds static method
Implementation
static Widget getBannerAds(BannerAd bannerAd, double width) {
return StatefulBuilder(
builder: (context, setState) => Container(
height: bannerAd.size.height.toDouble(),
width: width,
alignment: Alignment.center,
child: AdWidget(ad: bannerAd),
),
);
}