areaFactor property
double
get
areaFactor
Implementation
double get areaFactor {
if (shapePreset == null) return 1.0;
final presetArea = shapePreset!.areaFactor;
return presetArea ?? _estimatePathAreaFactor(shapePreset!.path);
}