getStroke function
Implementation
List<Vec> getStroke(List<dynamic> points, {StrokeOptions? options}) {
options ??= StrokeOptions();
final strokePoints = getStrokePoints(points, options);
final pointsWithRadii = setStrokePointRadii(strokePoints, options);
return getStrokeOutlinePoints(pointsWithRadii, options);
}