fz method

double fz(
  1. num value
)

Scales font size (with limits to prevent it becoming microscopic or huge).

Implementation

double fz(num value) => (value * _scale).clamp(4.0, 400.0);