copyWith method

AssetMetaSchemaV2 copyWith({
  1. int? decimals,
  2. String? displayName,
  3. String? imageUrl,
  4. String? symbol,
})

Implementation

AssetMetaSchemaV2 copyWith(
    {int? decimals, String? displayName, String? imageUrl, String? symbol}) {
  return AssetMetaSchemaV2(
      decimals: decimals ?? this.decimals,
      displayName: displayName ?? this.displayName,
      imageUrl: imageUrl ?? this.imageUrl,
      symbol: symbol ?? this.symbol);
}