isPlayoutDeviceMute method Null safety
Check if the current audio playback device is muted
Implementation
Future<bool> isPlayoutDeviceMute() async {
BoolValue reply = await _api.isPlayoutDeviceMute();
return reply.value ?? false;
}
Check if the current audio playback device is muted
Future<bool> isPlayoutDeviceMute() async {
BoolValue reply = await _api.isPlayoutDeviceMute();
return reply.value ?? false;
}