setVideoConfig method

Future<void> setVideoConfig(
  1. RCRTCVideoStreamConfig config
)

Implementation

Future<void> setVideoConfig(RCRTCVideoStreamConfig config) async {
  var json = jsonEncode(config);
  await channel.invokeMethod("setVideoConfig", json);
}