tap method

void tap(
  1. Finder finder
)

Implementation

void tap(Finder finder) {
  final element = finder.evaluate();
  if (element == null) {
    throw StateError('No widget found');
  }
  sendEnter();
}