EscPosPrinter<T> constructor

EscPosPrinter<T>(
  1. PrinterConnector<T> connector,
  2. T model, {
  3. int dpi = 200,
  4. required int width,
  5. int beepCount = 4,
})

Implementation

EscPosPrinter(PrinterConnector<T> connector, T model,
    {this.dpi = 200, required this.width, this.beepCount = 4})
    : super(connector, model);