DeviceCapabilities constructor

DeviceCapabilities({
  1. bool compressionSupported = false,
  2. bool checksumSupported = false,
  3. bool uploadEnabled = false,
  4. bool signatureRequired = false,
  5. bool pinChangeSupported = false,
})

Implementation

DeviceCapabilities({
  this.compressionSupported = false,
  this.checksumSupported = false,
  this.uploadEnabled = false,
  this.signatureRequired = false,
  this.pinChangeSupported = false,
});