connect method
Implementation
Future<Process> connect({
required String user,
required String database,
String? host,
int? port,
String? password,
bool? skipSsl,
bool inheritStdio = false,
}) {
return startProcess(
[
...buildArgs(
skipSsl: skipSsl,
host: host,
port: port,
user: user,
password: password,
),
database,
],
mode: inheritStdio
? ProcessStartMode.inheritStdio
: ProcessStartMode.normal,
);
}