autoplay property

bool autoplay

Gets or sets a value that indicates whether to start playing the media automatically.

MDN Reference

Implementation

_i2.bool get autoplay => _i4.getProperty(
      this,
      'autoplay',
    );
void autoplay=(bool value)

Implementation

set autoplay(_i2.bool value) {
  _i4.setProperty(
    this,
    'autoplay',
    value,
  );
}