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