playbackRate property

num playbackRate

Gets or sets the current rate of speed for the media resource to play. This speed is expressed as a multiple of the normal speed of the media resource.

MDN Reference

Implementation

_i2.num get playbackRate => _i4.getProperty(
      this,
      'playbackRate',
    );
void playbackRate=(num value)

Implementation

set playbackRate(_i2.num value) {
  _i4.setProperty(
    this,
    'playbackRate',
    value,
  );
}