strokeLengthWithinBounds method

bool strokeLengthWithinBounds(
  1. double strokeLength,
  2. List<double> lengthRange
)

Implementation

bool strokeLengthWithinBounds(double strokeLength, List<double> lengthRange) {
  return strokeLength > lengthRange[0] && strokeLength < lengthRange[1];
}