muted property

bool muted

Get or set if the video is muted.

Implementation

bool get muted => videoElement.muted;
void muted=(bool muted)

Implementation

set muted(bool muted) {
  videoElement.muted = muted;
}