requestOfferwallData method

  1. @override
Future<String> requestOfferwallData(
  1. String placementName,
  2. bool isEmbeded
)
override

Implementation

@override
Future<String> requestOfferwallData(String placementName, bool isEmbeded) async {
  final result = await methodChannel.invokeMethod<String>('requestOfferwallData',
                                {'placementName': placementName,'isEmbeded': isEmbeded});
  return result ?? '';
}