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