removeCustomFetchParam static method

void removeCustomFetchParam(
  1. String key, {
  2. String? appId,
  3. String? templateCode,
})

Implementation

static void removeCustomFetchParam(String key,
    {String? appId, String? templateCode}) {
  _channel.invokeMethod("removeCustomFetchParam",
      {"key": key, "appId": appId, "templateCode": templateCode});
}