copyWith method

AssetInfoScreenerSchema copyWith({
  1. String? circulatingSupply,
  2. String? id,
  3. String? name,
  4. String? symbol,
  5. String? totalSupply,
})

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);
}