GrantAddCommand constructor

GrantAddCommand()

Creates the grant-add command.

Implementation

GrantAddCommand() {
  _addApiOptions(argParser);
  argParser
    ..addMultiOption(
      'role',
      help: 'A role to grant (repeatable): viewer, operator, admin, node.',
    )
    ..addOption('note', help: 'Who this is for, and why.');
}