Cursor.url constructor

const Cursor.url(
  1. String url, {
  2. double? x,
  3. double? y,
  4. required Cursor fallback,
})

Create a custom cursor from a URL, with optional hotspot coordinates and a fallback cursor.

Implementation

const factory Cursor.url(String url, {double? x, double? y, required Cursor fallback}) = _UrlCursor;