get method
OBJ?
get(
- ID id
Get a single object by its id. Returns null if the object does not
exist.
Implementation
OBJ? get(ID id) => getAll([id]).firstOrNull;
Get a single object by its id. Returns null if the object does not
exist.
OBJ? get(ID id) => getAll([id]).firstOrNull;