removeLocalCustomStreamView method

Future<int> removeLocalCustomStreamView(
  1. String tag
)

Implementation

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