buildArgs method
- @protected
- required bool? skipSsl,
- required String? host,
- required int? port,
- required String user,
- required String? password,
inherited
Implementation
@protected
List<String> buildArgs({
required bool? skipSsl,
required String? host,
required int? port,
required String user,
required String? password,
}) {
return [
if (null != skipSsl) "--skip-ssl",
if (null != host) "--host=$host",
if (null != port) "--port=$port",
"--user=$user",
if (null != password) "--password=$password",
];
}