copyWithWrapped method
Implementation
AssetInfoScreenerSchema copyWithWrapped(
{Wrapped<String?>? circulatingSupply,
Wrapped<String>? id,
Wrapped<String>? name,
Wrapped<String>? symbol,
Wrapped<String>? totalSupply}) {
return AssetInfoScreenerSchema(
circulatingSupply: (circulatingSupply != null
? circulatingSupply.value
: this.circulatingSupply),
id: (id != null ? id.value : this.id),
name: (name != null ? name.value : this.name),
symbol: (symbol != null ? symbol.value : this.symbol),
totalSupply:
(totalSupply != null ? totalSupply.value : this.totalSupply));
}