Printer constructor
      
      Printer({})
     
    
    
Implementation
Printer({
  this.address,
  this.name,
  this.connectionType,
  this.isConnected,
  this.vendorId,
  this.productId,
}) : super(deviceId: address ?? '', name: name ?? '');