authOptions top-level property
Implementation
final List<Option> authOptions = [
Option(
name: ['--pass', '-p'],
description:
'Database authentication password to use when connecting [default: root]',
args: [
Arg(
name: 'pass',
description:
'Database authentication password to use when connecting [default: root]')
]),
Option(
name: ['--user', '-u'],
description:
'Database authentication username to use when connecting [default: root]',
args: [
Arg(
name: 'user',
description:
'Database authentication username to use when connecting [default: root]')
])
];