THORChainAsset constructor
Implementation
factory THORChainAsset({
$core.String? chain,
$core.String? symbol,
$core.String? ticker,
$core.bool? synth,
}) {
final $result = create();
if (chain != null) {
$result.chain = chain;
}
if (symbol != null) {
$result.symbol = symbol;
}
if (ticker != null) {
$result.ticker = ticker;
}
if (synth != null) {
$result.synth = synth;
}
return $result;
}