DataRepository<T> constructor

DataRepository<T>(
  1. String domain,
  2. String name, {
  3. bool register = true,
})

Implementation

DataRepository(this.domain, this.name, {bool register = true}) {
  DataHandler._check(this);

  if (register) {
    DataHandler.register(this);
  }
}