EnvConfig constructor

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

Implementation

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