fontWeight属性

String fontWeight
覆盖

获取"font-weight"的值

实现

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

设置"font-weight"的值

实现

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