click abstract method

Future<void> click({
  1. WidgetExpr? widget,
  2. Offset? offset,
  3. ClickType type = ClickType.single,
})

Click on the given widget. Optionally, a click type and offset can be provided.

Implementation

Future<void> click({
  WidgetExpr? widget,
  Offset? offset,
  ClickType type = ClickType.single,
});