getExactBendPoints method
Get exact bend points for styles that support it (e.g., step connections) Returns null if the style doesn't support exact bend point calculation
Implementation
@override
List<Offset>? getExactBendPoints(PathParameters params) {
return SmoothstepPathCalculator.getBendPoints(
start: params.start,
end: params.end,
sourcePosition: params.sourcePosition,
targetPosition: params.targetPosition,
offset: params.offset,
);
}