AtCollectionModel<T> constructor

AtCollectionModel<T>()

Implementation

AtCollectionModel() {
  _atCollectionModelOperations = AtCollectionModelOperationsImpl(this);
  streams = AtCollectionModelStreamOperationsImpl(this);
  // Default the collectionName to the name of the class extending AtCollectionModel
  collectionName = runtimeType.toString().toLowerCase();
}