fontFamily property
Implementation
@override
List<String>? get fontFamily {
// Get style from self or closest parent if specified style property is not set
// due to style inheritance.
if (_fontFamily == null && parent != null) {
return parent!.fontFamily;
}
return _fontFamily ?? CSSText.defaultFontFamilyFallback;
}