setCursor method

Future<bool> setCursor(
  1. CursorType cursor
)

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

Implementation

Future<bool> setCursor(CursorType cursor) async {
  return FlutterDropzonePlatform.instance.setCursor(cursor, viewId: viewId);
}