script property
ScriptCode?
get
script
The script for which the font should be retrieved. If omitted, the font setting for the global script (script code "Zyyy") is retrieved.
Implementation
ScriptCode? get script => _wrapped.script?.let(ScriptCode.fromJS);
set
script
(ScriptCode? v)
Implementation
set script(ScriptCode? v) {
_wrapped.script = v?.toJS;
}