cursor property Null safety

String cursor
override

Gets the value of "cursor"

Implementation

String get cursor => this._cursor;
void cursor=(String? value)
override

Sets the value of "cursor"

Implementation

set cursor(String? value) {
  _cursor = value == null ? '' : value;
}