findByPath method

WidgetSelection findByPath(
  1. String path
)

Implementation

WidgetSelection findByPath(String path) => WidgetSelection._fromMatches(
  scope: '$kind $name',
  selector: 'findByPath("$path")',
  matches: widgets.where((widget) => widget.path == path).toList(),
);