setCursor method

Future<bool> setCursor(
  1. CursorType cursor, {
  2. required int viewId,
})

Specify the CursorType of the dropzone. CursorType is one the CSS cursor types.

Implementation

Future<bool> setCursor(CursorType cursor, {required int viewId}) async {
  throw UnimplementedError('setCursor');
}