copyWithWrapped method

AssetInfoScreenerSchema copyWithWrapped({
  1. Wrapped<String?>? circulatingSupply,
  2. Wrapped<String>? id,
  3. Wrapped<String>? name,
  4. Wrapped<String>? symbol,
  5. Wrapped<String>? totalSupply,
})

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