PrinterConfig constructor

const PrinterConfig({
  1. int density = 8,
  2. double speed = 4.0,
  3. double paperWidth = 2.0,
  4. double paperHeight = 1.0,
})

Implementation

const PrinterConfig({
  this.density = 8,
  this.speed = 4.0,
  this.paperWidth = 2.0,
  this.paperHeight = 1.0,
});