switchMediaDevice static method
Implementation
static Future<void> switchMediaDevice(String deviceName,
{String? speakerId, String? micDeviceId}) async {
await _channel.invokeMethod('switchMediaDevice', {
'deviceName': deviceName,
'speakerId': speakerId,
'micDeviceId': micDeviceId
});
}