whereObscuringCharacter method

  1. @useResult
WidgetSelector<TextField> whereObscuringCharacter(
  1. MatchProp<String> match
)

Creates a WidgetSelector that finds all TextField where obscuringCharacter matches the condition.

Example usage:

spot<TextField>().whereObscuringCharacter((it) => it.equals('foo')).existsOnce();

Implementation

@useResult
WidgetSelector<TextField> whereObscuringCharacter(MatchProp<String> match) {
  return withDiagnosticProp<String>('obscuringCharacter', match);
}