Endpoint constructor

Endpoint({
  1. Object host = "localhost",
  2. int port = 3306,
  3. required String username,
  4. required String password,
})

Implementation

Endpoint({this.host = "localhost", this.port = 3306, required this.username, required this.password});