cancelRequestWithURL method

Future<String?> cancelRequestWithURL(
  1. Map<String, String> map
)
override

取消指定URL的HTTP请求

Implementation

Future<String?> cancelRequestWithURL(Map<String, String> map) async {
  final result = await methodChannel.invokeMethod(
      "cancelRequestWithURL",
      map
  );
  return result;
}