stopRemoteView method

Future<void> stopRemoteView(
  1. String userId,
  2. TRTCVideoStreamType streamType
)

Implementation

Future<void> stopRemoteView(String userId, TRTCVideoStreamType streamType) async {
  await _channel.invokeMethod('stopRemoteView', {"userId": userId, "streamType": streamType.value()});
}