simulateTouch static method
Implementation
static Future<bool> simulateTouch(double x, double y) async {
try {
final result = await _channel.invokeMethod('simulateTouch', {
'x': x,
'y': y,
});
return result as bool;
} catch (e) {
return false;
}
}