Operation constructor

Operation({
  1. required AdjustmentType adjustmentType,
  2. required num amount,
  3. String? description,
  4. int? department,
  5. int? idVat,
  6. int? quantity,
})

Implementation

Operation({
  required this.adjustmentType,
  required this.amount,
  this.description,
  this.department,
  this.idVat,
  this.quantity,
});