tapAt method

Future<void> tapAt(
  1. double x,
  2. double y
)

Taps at the given screen coordinates.

Implementation

Future<void> tapAt(double x, double y) async {
  config.logger('tapAt($x, $y)');
  await _channel.invokeMethod<void>('tapAt', {'x': x, 'y': y});
}