EpsonPrinterResponse constructor

EpsonPrinterResponse({
  1. required String type,
  2. required bool success,
  3. String? message,
  4. dynamic content,
})

Implementation

EpsonPrinterResponse({
  required this.type,
  required this.success,
  this.message,
  this.content,
});