checkWithTrace method

Future<Map<Object?, Object?>?> checkWithTrace(
  1. String url
)

Implementation

Future<Map<Object?, Object?>?> checkWithTrace(String url) async {
  try {
    return await _channel.invokeMethod('checkWithTrace', url);
  } on PlatformException catch (e) {
    throw Exception('Failed execute platform request');
  }
}