direction property

VideoDirection get direction

Implementation

VideoDirection get direction => _direction;
set direction (VideoDirection value)

Implementation

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