Skip to content

Instantly share code, notes, and snippets.

@chaudharydeepanshu
Created January 27, 2022 17:25
Show Gist options
  • Save chaudharydeepanshu/de1e6f76530bb28c07e8fac77c8c0884 to your computer and use it in GitHub Desktop.
Save chaudharydeepanshu/de1e6f76530bb28c07e8fac77c8c0884 to your computer and use it in GitHub Desktop.
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
final initFuture = MobileAds.instance.initialize();
final adState = AdState(initFuture);
runApp(Provider.value(
value: adState,
builder: (context, child) => const MyApp(),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment