Receiver constructor

Receiver({
  1. String? address,
  2. int? amountCharged,
  3. int? amountReceived,
  4. int? amountReturned,
  5. String? refundAttributesMethod,
  6. String? refundAttributesStatus,
})

Implementation

Receiver(
    {this.address,
    this.amountCharged,
    this.amountReceived,
    this.amountReturned,
    this.refundAttributesMethod,
    this.refundAttributesStatus});