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