vaultPluginRegisterOptions top-level property
Implementation
final List<Option> vaultPluginRegisterOptions = [
Option(
name: '-args',
description: 'Arguments to pass to the plugin when starting. Separate multiple arguments with a comma',
args: [
Arg(
name: 'string'
)
]
),
Option(
name: '-command',
description: 'Command to spawn the plugin. This defaults to the name of the plugin if unspecified',
args: [
Arg(
name: 'string'
)
]
),
Option(
name: '-sha256',
description: 'SHA256 of the plugin binary. This is required for all plugins',
args: [
Arg(
name: 'string'
)
]
)
];