PrinterResponseStatus constructor

PrinterResponseStatus({
  1. required bool offline,
  2. required bool coverOpen,
  3. required bool cutterError,
  4. required bool receiptPaperEmpty,
  5. String? errorMessage,
  6. required bool isSuccess,
  7. required bool overTemp,
  8. String? infoMessage,
  9. String? modelName,
  10. String? firmwareVersion,
})

Implementation

PrinterResponseStatus({
  required this.offline,
  required this.coverOpen,
  required this.cutterError,
  required this.receiptPaperEmpty,
  this.errorMessage,
  required this.isSuccess,
  required this.overTemp,
  this.infoMessage,
  this.modelName,
  this.firmwareVersion,
});