addLiveCdn method

Future<int> addLiveCdn(
  1. String url
)

Implementation

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