PrintConfig constructor

PrintConfig({
  1. required Size labelSize,
  2. int printSpeed = 1,
  3. int packetSize = 64,
  4. bool halfTones = false,
  5. bool dryRun = false,
})

Implementation

PrintConfig({
  required this.labelSize,
  this.printSpeed = 1,
  this.packetSize = 64,
  this.halfTones = false,
  this.dryRun = false,
});