withHandleGeometry method

ChartSelectionBrushStyle withHandleGeometry(
  1. double handleSize,
  2. double handleHitSize
)

Replaces ChartSelectionBrushStyle.handleSize and ChartSelectionBrushStyle.handleHitSize together.

The parameters are assert-coupled, so they only move as a pair.

Implementation

ChartSelectionBrushStyle withHandleGeometry(
  double handleSize,
  double handleHitSize,
) => copyWith(handleSize: handleSize, handleHitSize: handleHitSize);