DeviceConfiguration constructor

const DeviceConfiguration({
  1. DeviceType deviceType = DeviceType.ingenicoMoby5500,
  2. String terminalId = '1234',
  3. TerminalType terminalType = TerminalType.mobile,
  4. String? identifier,
  5. bool contactlessAllowed = true,
  6. bool keyedEntryAllowed = true,
  7. bool heartbeatEnabled = true,
  8. bool barcodeReaderEnabled = true,
  9. int sleepTimeoutSeconds = 300,
})

Implementation

const DeviceConfiguration({
  this.deviceType = DeviceType.ingenicoMoby5500,
  this.terminalId = '1234',
  this.terminalType = TerminalType.mobile,
  this.identifier,
  this.contactlessAllowed = true,
  this.keyedEntryAllowed = true,
  this.heartbeatEnabled = true,
  this.barcodeReaderEnabled = true,
  this.sleepTimeoutSeconds = 300,
});