TransferData constructor

TransferData({
  1. DateTime? acceptDate,
  2. DateTime? rejectDate,
  3. String? rejectReason,
  4. DateTime? transferDate,
  5. String? transferMessage,
})

Implementation

TransferData({
  this.acceptDate,
  this.rejectDate,
  this.rejectReason,
  this.transferDate,
  this.transferMessage,
});