requestInteractionAd method

Future<void> requestInteractionAd(
  1. ReaperInteractionBean reaperInteractionBean
)

Implementation

Future<void> requestInteractionAd(
    ReaperInteractionBean reaperInteractionBean) async {
  final String interactionAdParameters = jsonEncode(reaperInteractionBean);
  callBack = reaperInteractionBean.callBack;
  await _channel.invokeMethod(
      KEY_METHOD_REQUEST_INTERACTION_AD, interactionAdParameters);
}