AssetTransferTransactionResponse constructor

AssetTransferTransactionResponse({
  1. required int amount,
  2. required int assetId,
  3. required String receiver,
  4. int? closeAmount,
  5. String? closeTo,
  6. String? sender,
})

Implementation

AssetTransferTransactionResponse({
  required this.amount,
  required this.assetId,
  required this.receiver,
  this.closeAmount,
  this.closeTo,
  this.sender,
});