muteCall static method
Muting an Ongoing call. On iOS, using Callkit(update the ongoing call ui). On Android, Nothing(only callback event listener).
Implementation
static Future muteCall(String id, {bool isMuted = true}) async {
await _channel.invokeMethod("muteCall", {'id': id, 'isMuted': isMuted});
}