fontId property
String
get
fontId
The font ID. Rather than the literal font ID preference value, this may be
the ID of the font that the system resolves the preference value to. So,
fontId can differ from the font passed to setFont
, if, for example,
the font is not available on the system. The empty string signifies
fallback to the global script font setting.
Implementation
String get fontId => _wrapped.fontId;
set
fontId
(String v)
Implementation
set fontId(String v) {
_wrapped.fontId = v;
}