bool muted

Get or set if the video is muted.

Source

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

Source

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