getRequestOptions property

Future<RequestOptions?> getRequestOptions

Implementation

static Future<RequestOptions?> get getRequestOptions async {
  dynamic args = await Ads.instance.channel.invokeMethod('HwAds-getRequestOptions');
  return args != null ? RequestOptions.fromJson(args) : null;
}