videoSettings property
VideoSettings
get
videoSettings
Implementation
VideoSettings get videoSettings => _videoSettings;
Specifies the video codec properties.
Implementation
@override
set videoSettings(VideoSettings videoSettings) {
assert(_memory != null);
_videoSettings = videoSettings;
RtmpStreamPlatform.instance.setVideoSettings(
{"memory": _memory, "settings": videoSettings.toMap()});
}