height property

  1. @Input()
void height=(int h)

Implementation

@Input()
set height(int h) {
  _height = h;

  _player?.setSize(_width, _height);
}