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