AdGridView constructor
const
AdGridView({
- Key? key,
- EdgeInsets? padding,
- bool showAds = true,
- int? specificIndex,
- required List items,
- double height = 1.7,
- required Widget onRender(
- BuildContext context,
- int index,
- dynamic value
- required BuildContext parentContext,
- int mobileCount = 2,
- int tabletCount = 3,
Implementation
const AdGridView({
Key? key,
this.padding,
this.showAds = true,
this.specificIndex,
required this.items,
this.height = 1.7,
required this.onRender,
required this.parentContext,
this.mobileCount = 2,
this.tabletCount = 3,
}) : super(key: key);