setLocalCustomStreamView method

Future<int> setLocalCustomStreamView(
  1. String tag,
  2. RCRTCView view
)

Implementation

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