Asset constructor
Implementation
factory Asset({
Chain? chain,
$core.String? symbol,
$core.String? tokenId,
}) {
final result = create();
if (chain != null) result.chain = chain;
if (symbol != null) result.symbol = symbol;
if (tokenId != null) result.tokenId = tokenId;
return result;
}