copyWith method
Implementation
AssetQuote copyWith({
String? symbol,
String? name,
Money? price,
double? changePercent,
Money? change24h,
String? logoUrl,
}) =>
AssetQuote(
symbol: symbol ?? this.symbol,
name: name ?? this.name,
price: price ?? this.price,
changePercent: changePercent ?? this.changePercent,
change24h: change24h ?? this.change24h,
logoUrl: logoUrl ?? this.logoUrl,
);