sendSwipe method
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);
}