requestOnce static method

Future<bool?> requestOnce({
  1. bool withOptOut = false,
})

Implementation

static Future<bool?> requestOnce({bool withOptOut = false}) async {
  Map<String, dynamic> values = {
    'withOptOut': withOptOut,
  };

  return await _channel.invokeMethod('requestOnce', values);
}