load method

Future<void> load()

Requests an ad from Adrop using the Ad unit ID of the Adrop ad.

Implementation

Future<void> load() async {
  return await _invokeChannel.invokeMethod(AdropMethod.loadAd, {
    "adType": AdType.native.index,
    "unitId": unitId,
    "useCustomClick": useCustomClick,
    "requestId": _requestId
  });
}