unmute method

void unmute()

Implementation

void unmute() {
  if (media != null) {
    media?.muted = false;
  }
}