isMuted method

  1. @override
Future<bool> isMuted()
override

To Check if currently Muted or not

  • Always return the value if not started then it will give false

Implementation

@override
Future<bool> isMuted() async {
  try {
    return await methodChannel.invokeMethod<bool>("isMuted") ?? false;
  } catch (e) {
    throw Exception("$e [Zoom Camera]");
  }
}