setReset method

Future<int> setReset()

Power-cycles the device. Reboots if on power; otherwise powers off.

Implementation

Future<int> setReset() {
  return _set(
    CapturePropertyIds.resetDevice,
    CapturePropertyTypes.none,
    const <dynamic, dynamic>{},
  );
}