PostgresFDBA constructor
PostgresFDBA(})
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,
);