AssetTransferTransaction constructor

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

Implementation

AssetTransferTransaction({
  this.assetId,
  this.amount,
  this.assetSender,
  this.receiver,
  this.closeTo,
  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,
      );