Refund constructor

Refund({
  1. required ItemType type,
  2. String? description,
  3. required int quantity,
  4. required double unitPrice,
  5. int? department,
  6. int? idVat,
})

Implementation

Refund({
  required this.type,
  this.description,
  required this.quantity,
  required this.unitPrice,
  this.department,
  this.idVat,
});