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