PrinterModel constructor

PrinterModel({
  1. String? displayName,
  2. String? makeAndModel,
  3. String? manufacturer,
})

Implementation

PrinterModel({
  this.displayName,
  this.makeAndModel,
  this.manufacturer,
});