tapAtSuperTextField method
Future<void>
tapAtSuperTextField(
- int offset, {
- Finder? superTextFieldFinder,
- TextAffinity affinity = TextAffinity.downstream,
- 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);
}