Printer constructor

Printer({
  1. String? address,
  2. String? name,
  3. ConnectionType? connectionType,
  4. bool? isConnected,
  5. String? vendorId,
  6. String? productId,
})

Implementation

Printer({
  this.address,
  this.name,
  this.connectionType,
  this.isConnected,
  this.vendorId,
  this.productId,
});