isPlayoutDeviceMute method Null safety

Future<bool> isPlayoutDeviceMute()

Check if the current audio playback device is muted

Implementation

Future<bool> isPlayoutDeviceMute() async {
  BoolValue reply = await _api.isPlayoutDeviceMute();
  return reply.value ?? false;
}