isMuted method

Future<bool?> isMuted()

Implementation

Future<bool?> isMuted() async {
  if (_nativeChannel == null) {
    debugPrint('ERROR: MethodChannel is null');
    return false;
  }
  bool? isMuted = await _nativeChannel!.invokeMethod(
    'isMuted',
  );
  return isMuted;
}