runWithConfig method

  1. @override
Future<void> runWithConfig(
  1. Configuration<O> commandConfig
)

Runs this command with prepared configuration (options). Subclasses should override this method.

Implementation

@override
Future<void> runWithConfig(final Configuration<O> commandConfig) async {
  throw UnimplementedError(
      'CLI command $name has not implemented runWithConfig.');
}