hitTestMouseTrackers method Null safety

HitTestResult hitTestMouseTrackers(
  1. Offset position
)

Determines the set of mouse tracker annotations at the given position.

See also:

Implementation

HitTestResult hitTestMouseTrackers(Offset position) {
  assert(position != null);
  final BoxHitTestResult result = BoxHitTestResult();
  hitTest(result, position: position);
  return result;
}