createHitTestPath method

Path createHitTestPath(
  1. Path originalPath,
  2. double tolerance
)

Creates an expanded path for hit testing The base implementation provides a simple stroke-based expansion

Implementation

Path createHitTestPath(Path originalPath, double tolerance) {
  return _createSimpleStrokeHitTestPath(originalPath, tolerance);
}