openWithDataCellular method

Future<Map> openWithDataCellular(
  1. String url,
  2. bool debug
)

Implementation

Future<Map> openWithDataCellular(String url, bool debug) async {
  try {
    return await _channel
        .invokeMethod('openWithDataCellular', {'url': url, 'debug': debug});
  } on PlatformException catch (e) {
    return {'error': 'sdk_error', 'error_description': e.message};
  }
}