menu
swift_flutter package
documentation
core/normalization.dart
NormalizedState<T>
upsert method
upsert method
dark_mode
light_mode
upsert
method
void
upsert
(
String
id
,
T
entity
)
Add or update entity
Implementation
void upsert(String id, T entity) { _entities[id] = entity; _ids.add(id); }
swift_flutter package
documentation
core/normalization
NormalizedState<T>
upsert method
NormalizedState class