TransactionMovement constructor

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

Implementation

const factory TransactionMovement({
  /// Asset amount
  int? amount,

  /// Address of the token if the type is token
  String? tokenAddress,

  /// Asset transfer recipient
  String? to,

  /// Type of the asset: UCO/Token
  String? type,

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