actionDown method

Future<void> actionDown(
  1. Offset point
)

Implementation

Future<void> actionDown(Offset point) async {
  await channel.invokeMethod('actionDown', <String, dynamic>{
    'x': point.dx,
    'y': point.dy,
  });
}