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