AnchorTransaction constructor

AnchorTransaction({
  1. required String id,
  2. required String kind,
  3. required String status,
  4. int? statusEta,
  5. String? moreInfoUrl,
  6. String? amountIn,
  7. String? amountInAsset,
  8. String? amountOut,
  9. String? amountOutAsset,
  10. String? amountFee,
  11. String? amountFeeAsset,
  12. FeeDetails? feeDetails,
  13. String? quoteId,
  14. String? from,
  15. String? to,
  16. String? externalExtra,
  17. String? externalExtraText,
  18. String? depositMemo,
  19. String? depositMemoType,
  20. String? withdrawAnchorAccount,
  21. String? withdrawMemo,
  22. String? withdrawMemoType,
  23. String? startedAt,
  24. String? updatedAt,
  25. String? completedAt,
  26. String? stellarTransactionId,
  27. String? externalTransactionId,
  28. String? message,
  29. bool? refunded,
  30. TransactionRefunds? refunds,
  31. String? requiredInfoMessage,
  32. Map<String, AnchorField>? requiredInfoUpdates,
  33. Map<String, DepositInstruction>? instructions,
  34. String? claimableBalanceId,
})

Implementation

AnchorTransaction(
    {required this.id,
    required this.kind,
    required this.status,
    this.statusEta,
    this.moreInfoUrl,
    this.amountIn,
    this.amountInAsset,
    this.amountOut,
    this.amountOutAsset,
    this.amountFee,
    this.amountFeeAsset,
    this.feeDetails,
    this.quoteId,
    this.from,
    this.to,
    this.externalExtra,
    this.externalExtraText,
    this.depositMemo,
    this.depositMemoType,
    this.withdrawAnchorAccount,
    this.withdrawMemo,
    this.withdrawMemoType,
    this.startedAt,
    this.updatedAt,
    this.completedAt,
    this.stellarTransactionId,
    this.externalTransactionId,
    this.message,
    this.refunded,
    this.refunds,
    this.requiredInfoMessage,
    this.requiredInfoUpdates,
    this.instructions,
    this.claimableBalanceId});