run method

  1. @override
Future<void> run(
  1. List<String> args
)
override

Executes the command using the provided command-line args.

Implementation

@override
Future<void> run(List<String> args) async {
  if (args.isNotEmpty) {
    _showCommandHelp(args.first);
    return;
  }

  _showGeneralHelp();
}