rate property

double rate

Current rate of the Player.

Implementation

double get rate {
  return LWM.bindings.PlayerGetRate(
    id,
  );
}
void rate=(double rate)

Sets the playback rate of the Player. Defaults to 1.0.

Implementation

set rate(double rate) {
  LWM.bindings.PlayerSetRate(
    id,
    rate,
  );
}