tapSpace method

void tapSpace(
  1. Finder finder
)

Implementation

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