isMuted method

Future<bool?> isMuted()

Implementation

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