whereLeft method

Creates a WidgetSelector that finds all SafeArea where left matches the condition.

Example usage:

spot<SafeArea>().whereLeft((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<SafeArea> whereLeft(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('left', match);
}