poolCreateWithOptions method
Creates a pool from a pre-encoded native options JSON payload.
Implementation
int poolCreateWithOptions(
String connectionString,
int maxSize, {
String? optionsJson,
}) =>
_native.poolCreateWithOptions(
connectionString,
maxSize,
optionsJson: optionsJson,
);