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