getObjectsInScope method

List<T>? getObjectsInScope({
  1. required String type,
  2. required String scopeId,
})

Returns all objects in given scope

Implementation

List<T>? getObjectsInScope({required String type, required String scopeId}) {
  return _instances[scopeId]?[type];
}