selectConfiguration method
Select the configuration of the device. Returns a Future resolved when the setup has been applied.
Implementation
@override
Future selectConfiguration(dynamic device, int configurationValue) {
return methodChannel.invokeMethod<bool>('selectConfiguration',
[device, configurationValue]).then<void>((dynamic result) => result);
}