SourceReceiver constructor

SourceReceiver({
  1. String? address,
  2. int? amountCharged,
  3. int? amountReceived,
  4. int? amountReturned,
})

Implementation

SourceReceiver({
  this.address,
  this.amountCharged,
  this.amountReceived,
  this.amountReturned,
});