setCursor method

Future<bool> setCursor(
  1. CursorType cursor
)

Implementation

Future<bool> setCursor(CursorType cursor) async {
  return setCursorJS(
      container, cursor.name.toLowerCase().replaceAll('_', '-').toJS);
}