UnspentOutputs constructor
const
UnspentOutputs({})
Implementation
const factory UnspentOutputs({
/// Amount: asset amount
int? amount,
/// Token address: address of the token if the type is token
String? tokenAddress,
/// Type: UCO/Token
String? type,
/// From: transaction which send the amount of assets
String? from,
/// Token id: It is the id for a token which is allocated when the token is minted.
int? tokenId,
/// Date time when the UTXO created/manipulated
int? timestamp,
/// State: It is the state of a smart contract
Map<String, dynamic>? state,
}) = _UnspentOutputs;