selectConfiguration method

  1. @override
Future selectConfiguration(
  1. dynamic device,
  2. int configurationValue
)
override

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);
}