copyWith method
Implementation
Asset copyWith({
String? id,
String? name,
String? symbol,
String? image,
List<Network>? networks,
}) =>
Asset(
id: id ?? this.id,
name: name ?? this.name,
symbol: symbol ?? this.symbol,
image: image ?? this.image,
networks: networks ?? this.networks,
);