DB constructor

DB({
  1. required String database,
  2. String driver = 'mysql',
  3. String host = 'localhost',
  4. required String password,
  5. int port = 3306,
  6. required String username,
})

Implementation

DB({
  required this.database,
  this.driver = 'mysql',
  this.host = 'localhost',
  required this.password,
  this.port = 3306,
  required this.username,
});