Payment constructor

Payment({
  1. required String receiver,
  2. required int amount,
  3. int? closeAmount,
  4. String? closeRemainderTo,
})

Implementation

Payment({
  required this.receiver,
  required this.amount,
  this.closeAmount,
  this.closeRemainderTo,
});