whereTransform method

  1. @useResult
WidgetSelector<Container> whereTransform(
  1. MatchProp<Matrix4> match
)

Creates a WidgetSelector that finds all Container where transform matches the condition.

Example usage:

spot<Container>().whereTransform((it) => it.equals(Matrix4.identity())).existsOnce();

Implementation

@useResult
WidgetSelector<Container> whereTransform(MatchProp<Matrix4> match) {
  return withDiagnosticProp<Matrix4>('transform', match);
}