cursor property

String? get cursor

CSS styling property that will be applied to text enclosed by a decoration.

Implementation

_i2.String? get cursor => _i5.getProperty(
      this,
      'cursor',
    );
set cursor (String? value)

Implementation

set cursor(_i2.String? value) {
  _i5.setProperty(
    this,
    'cursor',
    value ?? _i6.undefined,
  );
}