muted property

bool muted

Implementation

bool get muted => video.muted;
void muted=(bool value)

Implementation

set muted(bool value) {
  video.muted = value;
}