sendDownloadCouponResult method
Future<void>
sendDownloadCouponResult({
- required String couponId,
- required bool success,
- required String message,
- required String popupStatus,
- required String alertType,
override
Implementation
@override
Future<void> sendDownloadCouponResult({
required String couponId,
required bool success,
required String message,
required String popupStatus,
required String alertType,
}) async {
return await methodChannel.invokeMethod<void>('player_downloadCouponResult', <String, dynamic>{
'couponId': couponId,
'success': success,
'message': message,
'popupStatus': popupStatus,
'alertType': alertType,
});
}