showFullScreenVideoAd method
Implementation
@override
Future<String?> showFullScreenVideoAd(String adspotId) async {
final result = await methodChannel.invokeMethod<String>(
'showFullScreenVideoAd',
{'adspotId': adspotId},
);
return result;
}