resolution property

VideoResolution get resolution

Implementation

VideoResolution get resolution => _resolution;
set resolution (VideoResolution value)

Implementation

set resolution(VideoResolution value) {
  if (value != _resolution) {
    _resolution = value;
    notifyListeners<VideoStateChanged>((VideoStateChanged func) {
      func(this, _resolution, _direction);
    });
  }
}