description property

  1. @override
String description
override

A description to describe the filter

Implementation

@override
String get description {
  if (childSelectors.length == 1) {
    return childSelectors.first.toStringBreadcrumb();
  }
  return '[${childSelectors.map((e) => e.toStringBreadcrumb()).join(', ')}]';
}