findByName method
Implementation
WidgetSelection findByName(String name) => WidgetSelection._fromMatches(
scope: '$kind ${this.name}',
selector: 'findByName("$name")',
matches:
widgets
.where((widget) => _equalsNormalized(widget.name, name))
.toList(),
);