tripleTapAtSuperTextField method

Future<void> tripleTapAtSuperTextField(
  1. int offset, [
  2. Finder? superTextFieldFinder,
  3. TextAffinity affinity = TextAffinity.downstream
])

Triple taps in a SuperTextField at the given offset

By default, this method expects a single SuperTextField in the widget tree and finds it byType. To specify one SuperTextField among many, pass a superTextFieldFinder.

Implementation

Future<void> tripleTapAtSuperTextField(int offset,
    [Finder? superTextFieldFinder, TextAffinity affinity = TextAffinity.downstream]) async {
  await _tapAtSuperTextField(offset, 3, superTextFieldFinder, affinity);
}