removeRemoteCustomStreamView method

Future<int> removeRemoteCustomStreamView(
  1. String userId,
  2. String tag
)

Implementation

Future<int> removeRemoteCustomStreamView(String userId, String tag) async {
  Map<String, dynamic> arguments = {
    'id': userId,
    'tag': tag,
  };
  int code = await _channel.invokeMethod('removeRemoteCustomStreamView', arguments) ?? -1;
  return code;
}