loop property

bool loop

Gets or sets a flag to specify whether playback should restart after it completes.

MDN Reference

Implementation

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

Implementation

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