down method

  1. @override
Future<void> down(
  1. MouseButton button, {
  2. PageLoaderElement? eventTarget,
})
override

Press at current location. If eventTarget is specified, PageLoader will attempt to fire the corresponding pointer events on that target, otherwise it will fire the events on the target that is under the current location.

Implementation

@override
Future<void> down(MouseButton button,
    {PageLoaderElement? eventTarget}) async {
  throw 'Not yet implemented';
}