fontWeight 属性

String fontWeight
override

获取 "font-weight" 的值

实现

String get fontWeight => this._fontWeight;
void fontWeight=(String? value)
override

设置 "font-weight" 的值

实现

set fontWeight(String? value) {
  _fontWeight = value == null ? '' : value;
}