Future<Null> tap(SerializableFinder finder)

Taps at the center of the widget located by finder.

Source

Future<Null> tap(SerializableFinder finder) async {
  await _sendCommand(new Tap(finder));
  return null;
}