description property

String get description

description

Implementation

String get description {
  switch (this) {
    case Command.install:
      return 'Create git pre-commit hook.';
    case Command.run:
      return 'Execute lint task.';
  }
}