removeRemoteCustomStreamView method
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;
}