copyWith method
Implementation
ValueModel copyWith({CryptoModel? crypto, LocalModel? local}) {
return ValueModel(
crypto: crypto ?? this.crypto,
local: local ?? this.local,
);
}
ValueModel copyWith({CryptoModel? crypto, LocalModel? local}) {
return ValueModel(
crypto: crypto ?? this.crypto,
local: local ?? this.local,
);
}