onMuted method

void onMuted(
  1. bool mute
)

Handle mute state changes (iOS/CallKit only)

Implementation

void onMuted(bool mute) {
  _isMicMuted = mute;
  notifyListeners();
}