cursor property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getcursor

override

Gets the value of "cursor"

Implementation

String get cursor => this._cursor;

setcursor (String? value)

override

Sets the value of "cursor"

Implementation

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