TransactionMovement constructor

const TransactionMovement({
  1. int? amount,
  2. String? tokenAddress,
  3. String? to,
  4. String? type,
  5. int? tokenId,
})

Implementation

const factory TransactionMovement({
  /// Amount: asset amount
  int? amount,

  /// Token address: address of the token if the type is token
  String? tokenAddress,

  /// To: asset transfer recipient
  String? to,

  /// Type: UCO/Token
  String? type,

  /// Token id: It is the id for a token which is allocated when the token is minted.
  int? tokenId,
}) = _TransactionMovement;