POSPrinter constructor

POSPrinter({
  1. String? id,
  2. String? name,
  3. String? address,
  4. int? deviceId,
  5. int? vendorId,
  6. int? productId,
  7. bool connected = false,
  8. int type = 0,
  9. ConnectionType? connectionType,
})

Implementation

POSPrinter({
  this.id,
  this.name,
  this.address,
  this.deviceId,
  this.vendorId,
  this.productId,
  this.connected: false,
  this.type: 0,
  this.connectionType,
});