copyWithWrapped method
Implementation
AssetMetaSchemaV2 copyWithWrapped(
{Wrapped<int?>? decimals,
Wrapped<String?>? displayName,
Wrapped<String?>? imageUrl,
Wrapped<String?>? symbol}) {
return AssetMetaSchemaV2(
decimals: (decimals != null ? decimals.value : this.decimals),
displayName:
(displayName != null ? displayName.value : this.displayName),
imageUrl: (imageUrl != null ? imageUrl.value : this.imageUrl),
symbol: (symbol != null ? symbol.value : this.symbol));
}