if you are running on chrome or flutter web, you need to disable the Mobile Ads initialization. Can use this:
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
if (!kIsWeb) await MobileAds.instance.initialize();
runApp(const ProviderScope(child: MyApp()));
}