autoplay property

bool get autoplay

Implementation

bool get autoplay => _autoplay?.get() ?? false;
set autoplay (dynamic v)

Implementation

set autoplay(dynamic v) {
  if (_autoplay != null) {
    _autoplay!.set(v);
  } else if (v != null) {
    _autoplay = BooleanObservable(Binding.toKey(id, 'autoplay'), v,
        scope: scope, listener: onPropertyChange);
  }
}