controls property

bool controls

Gets or sets a flag that indicates whether the client provides a set of controls for the media (in case the developer does not include controls for the player).

MDN Reference

Implementation

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

Implementation

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