EnvConfig constructor

const EnvConfig({
  1. String host = _host,
  2. int port = _port,
  3. String user = _user,
  4. String? password,
  5. String dbName = _dbName,
  6. String tableName = _tableName,
  7. String homeDbName = _user,
})

Implementation

const EnvConfig({
  this.host = _host,
  this.port = _port,
  this.user = _user,
  this.password,
  this.dbName = _dbName,
  this.tableName = _tableName,
  this.homeDbName = _user,
});