获取 "font-size" 的值
String get fontSize => this._fontSize;
设置 "font-size" 的值
set fontSize(String? value) { _fontSize = value == null ? '' : value; }