removeLiveCdn method

Future<int> removeLiveCdn(
  1. String url
)

Implementation

Future<int> removeLiveCdn(String url) async {
  int code = await _channel.invokeMethod('removeLiveCdn', url) ?? -1;
  return code;
}