isMuted method

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

Is call muted. Returns true if muted, false otherwise.

Implementation

@override
Future<bool> isMuted() async {
  if (_jsCall != null) {
    return _jsCall!.isMuted();
  } else {
    return false;
  }
}