onMuted method

void onMuted(
  1. int callId,
  2. bool mute
)

Handle muted event raised by CallKit (iOS/CallKit only)

Implementation

void onMuted(int callId, bool mute) {
  _logs?.print('onMuted callId:$callId $mute');

  _findCall(callId)?.onMuted(mute);
  notifyListeners();
}