autoplay property

bool autoplay

Current autoplay mode of the Player.

Implementation

bool get autoplay {
  return LWM.bindings.PlayerIsAutoplay(
    id,
  );
}
void autoplay=(bool autoplay)

Sets autoplay mode of the Player.

Implementation

set autoplay(bool autoplay) {
  LWM.bindings.PlayerSetAutoplay(
    id,
    autoplay,
  );
}