cursor property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getcursor
Gets the value of "cursor"
Implementation
String get cursor => getPropertyValue('cursor');
setcursor (String value)
Sets the value of "cursor"
Implementation
set cursor(String value) {
setProperty('cursor', value, '');
}