description property

String get description

Implementation

String get description {
  return isValid
      ? 'Valid: ${prettifyValue(value)}'
      : '$shortDescription (value: ${prettifyValue(value)})';
}