description property

  1. @override
String? description
override

This tool's description (which is included in the help/usage output) can be overridden by setting this field to a non-null value.

Implementation

@override
String? get description => _description ??= _specs
    .map((s) => s.tool.description)
    .firstWhere((desc) => desc != null, orElse: () => null);
  1. @override
void description=(String? value)
override

This tool's description (which is included in the help/usage output) can be overridden by setting this field to a non-null value.

Implementation

@override
set description(String? value) => _description = value;