setOutputDevice method
Selects the output device to monitor.
Pass null to switch back to the system default output device.
Implementation
@override
Future<void> setOutputDevice(String? deviceId) {
return methodChannel
.invokeMethod<void>('setOutputDevice', <String, Object?>{
'deviceId': deviceId,
});
}