Pool.withString constructor
deno-postgres@v0.17.0/Pool/constructor.
Implementation
factory Pool.withString({
required String connectionString,
required int size,
bool? lazy,
}) =>
callConstructor('Pool', [
connectionString,
size,
if (lazy != null) lazy,
]);