description property

  1. @override
String get description
override

A description of this command, included in usage.

Implementation

@override
String get description {
  final script = config.scripts?.scriptsMap[scriptName];
  return script?.command ?? 'Run $scriptName script';
}