spacingFactor property
double?
get
spacingFactor
Implementation
double? get spacingFactor {
final x = (textSize ?? 0) + lineSpacingExtra;
final y = x * 0.068;
return lineSpacingExtra > 0 ? y : null;
}