mute method

Future<bool> mute({
  1. bool muted = true,
})

mute the call initiated by the user

Implementation

Future<bool> mute({bool muted = true}) {
  return FlutterVoipKit.muteCall(this.uuid, muted: muted);
}