playbackRate property
num
get
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.
Implementation
_i2.num get playbackRate => _i4.getProperty(
this,
'playbackRate',
);
set
playbackRate
(num value)
Implementation
set playbackRate(_i2.num value) {
_i4.setProperty(
this,
'playbackRate',
value,
);
}