run method

  1. @override
Future<void> run(
  1. AFCommandContext ctx
)
override

Override this to implement the command. The first item in the list is the command name.

Implementation

@override
Future<void> run(AFCommandContext ctx) async {
  // override this to avoid 'error not in root of project'
  await execute(ctx);
}