RatelDatabase constructor

RatelDatabase({
  1. required String host,
  2. String port = '5432',
  3. required String databaseName,
  4. required String username,
  5. required String password,
})

Implementation

RatelDatabase({
  required this.host,
  this.port = '5432',
  required this.databaseName,
  required this.username,
  required this.password,
}) {
  RatelRepository.configure(this);
}