mute method

Future<void> mute(
  1. bool? should
)

mute
bool should ->
true mutes
false unmutes
Not setting set toggles the mute state

Implementation

Future<void> mute(bool? should) {
  return should != null ? setProperty('mute', should) : cycleProperty('mute');
}