script property

ScriptCode? get script

The script for which the font should be cleared. If omitted, the global script font setting is cleared.

Implementation

ScriptCode? get script => _wrapped.script?.let(ScriptCode.fromJS);
set script (ScriptCode? v)

Implementation

set script(ScriptCode? v) {
  _wrapped.script = v?.toJS;
}