isAdLoaded method
Implementation
@override
Future<bool> isAdLoaded(String adType) async {
log('Yodo1 Flutter SDK Channel Call - Is Ad Loaded - $adType');
final isLoaded = await methodChannel
.invokeMethod<bool>(Yodo1MasConstants.methodNativeIsAdLoaded, {
'ad_type': adType,
});
return isLoaded ?? false;
}