PostgresFDBA constructor

PostgresFDBA(
  1. String name, {
  2. String host = 'localhost',
  3. int port = 5432,
  4. String? username,
  5. String? password,
})

Implementation

PostgresFDBA(
  super.name, {
  String host = 'localhost',
  int port = 5432,
  String? username,
  String? password,
}) : endpoint = Endpoint(
        host: host,
        port: port,
        database: name,
        username: username,
        password: password,
      );