getCachedEntitiesByIDs<O> abstract method

Map<dynamic, Object>? getCachedEntitiesByIDs<O>(
  1. List ids, {
  2. Type? type,
  3. bool removeCachedIDs = false,
})

Returns the cached entities of type with ids.

  • If removeCachedIDs is true it will remove the matching cached entities from ids.

Implementation

Map<dynamic, Object>? getCachedEntitiesByIDs<O>(
  List<dynamic> ids, {
  Type? type,
  bool removeCachedIDs = false,
});