execute method

  1. @override
Future<void> execute()
override

execute command

Implementation

@override
Future<void> execute() async {
  final commandsHelp = _getCommandsHelp(
    _commands ?? (_command != null ? [_command!] : commands),
    0,
  );
  LogService.info('''
List available commands:
$commandsHelp
''');
}