setTrigger method

Future<int> setTrigger(
  1. int action
)

Sets the scan trigger (see Trigger for valid values).

Implementation

Future<int> setTrigger(int action) {
  return _set(CapturePropertyIds.triggerDevice, CapturePropertyTypes.byte, action);
}