获取"width"的值
String get width => this._width;
设置"width"的值
set width(String? value) { _width = value == null ? '' : value; }