sendTap method

Future<void> sendTap(
  1. Point<int> pos, {
  2. InputSource? inputSource,
  3. bool debug = false,
})

Implementation

Future<void> sendTap(Point<int> pos, {InputSource? inputSource, bool debug = false}) async {
  await exec(_makeTap(pos, inputSource: inputSource), debug: debug);
}