getOutputDevices method
Implementation
@override
Future<List<AudioMonitorDevice>> getOutputDevices() async {
final devices = await _invokeListMethod('getOutputDevices');
return devices
.map(
(device) =>
AudioMonitorDevice.fromMap(Map<Object?, Object?>.from(device)),
)
.toList(growable: false);
}