copyWith method
Implementation
AssetInfoScreenerSchema copyWith(
{String? circulatingSupply,
String? id,
String? name,
String? symbol,
String? totalSupply}) {
return AssetInfoScreenerSchema(
circulatingSupply: circulatingSupply ?? this.circulatingSupply,
id: id ?? this.id,
name: name ?? this.name,
symbol: symbol ?? this.symbol,
totalSupply: totalSupply ?? this.totalSupply);
}