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