Operation constructor

Operation({
  1. OperationType? type,
  2. String? operator,
  3. num? amount,
  4. String? description,
  5. String? department,
  6. String? justification,
})

Implementation

Operation({
  this.type,
  this.operator,
  this.amount,
  this.description,
  this.department,
  this.justification,
});