tapAtSuperTextField method

Future<void> tapAtSuperTextField(
  1. int offset, {
  2. Finder? superTextFieldFinder,
  3. TextAffinity affinity = TextAffinity.downstream,
  4. int buttons = kPrimaryButton,
})

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> tapAtSuperTextField(
  int offset, {
  Finder? superTextFieldFinder,
  TextAffinity affinity = TextAffinity.downstream,
  int buttons = kPrimaryButton,
}) async {
  await _tapAtSuperTextField(offset, 1, superTextFieldFinder, affinity, buttons);
}