handle static method

Future<void> handle(
  1. ArgResults cmd
)

Implementation

static Future<void> handle(ArgResults cmd) async {
  final verbose = cmd['verbose'] as bool;
  await _initProject(verbose);
}