sendSwipe method

Future<void> sendSwipe({
  1. InputSource? inputSource,
  2. Duration? duration,
  3. required Point<int> start,
  4. required Point<int> end,
  5. bool debug = false,
})

Implementation

Future<void> sendSwipe({
  InputSource? inputSource,
  Duration? duration,
  required Point<int> start,
  required Point<int> end,
  bool debug = false,
}) async {
  await exec(_makeSwipe(inputSource: inputSource, duration: duration, start: start, end: end), debug: debug);
}