systemFontFamily property
The setting indicating the current system font of the host platform.
Implementation
@override
String? get systemFontFamily {
return _forceSystemFontFamilyToBeNull
? null
: _systemFontFamily ?? parent.systemFontFamily;
}
set
systemFontFamily
(String? value)
Implementation
set systemFontFamily(String? value) {
_systemFontFamily = value;
if (value == null) {
_forceSystemFontFamilyToBeNull = true;
}
onSystemFontFamilyChanged?.call();
}