isMuted method

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

Implementation

@override
Future<bool> isMuted() async {
  try {
    final isMuted = await methodChannel.invokeMethod<bool>('isMuted');
    return isMuted ?? false;
  } on PlatformException catch (exception) {
    throw _mapPlatformException(exception);
  }
}