all<T extends CollectionController<Model>> static method

Map<String, Model> all<T extends CollectionController<Model>>(
  1. String collectionId
)

Implementation

static Map<String, Model> all<T extends CollectionController>(
    String collectionId) {
  return ControllerManager.getCollectionController<T>(collectionId)
      .getModels();
}