support resize cursors for macOS.

  • resizeUpLeftDownRight
  • resizeUpRightDownLeft
  • resizeUpLeft
  • resizeUpRight
  • resizeDownLeft
  • resizeDownRight

samples

    MouseRegion(
        cursor: FlutterDesktopCursors.resizeUpLeft,
        child: Container(
            width: 100,
            height: 100,
            child: const Center(child: Text('resizeUpLeft')),
        ),
    )