softRfidTrigger method
Controls the software RFID trigger.
action specifies the trigger action. Use values from
DataWedgeSoftTriggerAction (start, stop, toggle).
Implementation
Future<void> softRfidTrigger({
required String action,
String? commandTag,
bool requestResult = true,
}) {
return sendCommand(
command: DataWedgeApi.softRfidTrigger,
value: action,
commandTag: commandTag ?? 'SOFT_RFID_TRIGGER',
requestResult: requestResult,
);
}