setPowerOff method

Future<int> setPowerOff()

Powers off the device.

Implementation

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