Pending constructor

Pending({
  1. String orderId = "",
  2. String orderType = "",
  3. String sender = "",
  4. String receiver = "",
  5. double amountTransfer = 0,
  6. double amountFee = 0,
})

Implementation

Pending({
  this.orderId = "",
  this.orderType = "",
  this.sender = "",
  this.receiver = "",
  this.amountTransfer = 0,
  this.amountFee = 0,
});