initAd method
Implementation
@override
Future<bool> initAd(
String appId,
String appKey, {
bool useTest = false,
}) async {
return await methodChannel.invokeMethod<bool>('initAd', {
'appId': appId,
'appKey': appKey,
'useTest': useTest,
}) ??
false;
}