selectDevice method
Selects the device with the given device name
Implementation
Future<void> selectDevice(String device) async {
final _channel = await _channelCompleter.future;
return _channel.invokeMethod(
'selectDevice',
device,
);
}