FontSize.percent constructor
FontSize.percent(
- double percent
A percentage of the parent style's font size.
Implementation
factory FontSize.percent(double percent) {
return FontSize(percent / -100.0, units: "%");
}