run method

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

Parses the provided command-line args and executes the command.

Implementation

@override
Future<void> run(List<String> args) async {
  final parser = buildParser();

  final results = parser.parse(args);

  await execute(results);
}