StrokeOptions constructor
StrokeOptions({
- double? size,
- double? thinning,
- double? smoothing,
- double? streamline,
- NumericEasing? easing,
- bool? simulatePressure,
- TaperOptions? start,
- TaperOptions? end,
- bool? last,
Implementation
StrokeOptions({
double? size,
double? thinning,
double? smoothing,
double? streamline,
NumericEasing? easing,
bool? simulatePressure,
TaperOptions? start,
TaperOptions? end,
bool? last,
}) : size = size ?? defaultSize,
thinning = thinning ?? defaultThinning,
smoothing = smoothing ?? defaultSmoothing,
streamline = streamline ?? defaultStreamline,
easing = easing ?? defaultEasing,
simulatePressure = simulatePressure ?? defaultSimulatePressure,
start = start ?? defaultStart,
end = end ?? defaultEnd,
last = last ?? defaultLast;