DbSettings constructor

DbSettings({
  1. required String username,
  2. required String password,
  3. required String dbName,
  4. required String host,
  5. required int port,
})

Implementation

DbSettings(
    {required this.username,
    required this.password,
    required this.dbName,
    required this.host,
    required this.port});