doubleTapAtSuperTextField method

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

Double 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> doubleTapAtSuperTextField(int offset,
    [Finder? superTextFieldFinder, TextAffinity affinity = TextAffinity.downstream]) async {
  await _tapAtSuperTextField(offset, 2, superTextFieldFinder, affinity);
}