getProperties method
override
Get the audio properties of this audio output device
Implementation
@override
Future<GetPropertiesResponse> getProperties({Map<String, dynamic>? extra}) async {
final request = GetPropertiesRequest()
..name = name
..extra = extra?.toStruct() ?? Struct();
return await client.getProperties(request);
}