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