PaymentTransaction constructor

PaymentTransaction({
  1. Address? receiver,
  2. BigInt? amount,
  3. BigInt? closeAmount,
  4. Address? closeRemainderTo,
  5. BigInt? fee,
  6. BigInt? firstValid,
  7. Uint8List? genesisHash,
  8. BigInt? lastValid,
  9. Address? sender,
  10. String? type,
  11. String? genesisId,
  12. Uint8List? group,
  13. Uint8List? lease,
  14. Uint8List? note,
  15. Address? rekeyTo,
})

Implementation

PaymentTransaction({
  this.receiver,
  this.amount,
  this.closeAmount,
  this.closeRemainderTo,
  BigInt? fee,
  BigInt? firstValid,
  Uint8List? genesisHash,
  BigInt? lastValid,
  Address? sender,
  String? type,
  String? genesisId,
  Uint8List? group,
  Uint8List? lease,
  Uint8List? note,
  Address? rekeyTo,
}) : super(
        type: type,
        fee: fee,
        firstValid: firstValid,
        genesisHash: genesisHash,
        lastValid: lastValid,
        sender: sender,
        genesisId: genesisId,
        group: group,
        lease: lease,
        note: note,
        rekeyTo: rekeyTo,
      );