whereFill method

  1. @useResult
WidgetSelector<Icon> whereFill(
  1. MatchProp<double> match
)

Creates a WidgetSelector that finds all Icon where fill matches the condition.

Example usage:

spot<Icon>().whereFill((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<Icon> whereFill(MatchProp<double> match) {
  return withDiagnosticProp<double>('fill', match);
}