resizeUpLeftDownRight property

MouseCursor get resizeUpLeftDownRight

Returns a resize up-left down-right MouseCursor.

Implementation

static MouseCursor get resizeUpLeftDownRight {
  if (PlatformUtils.isMacOS && !PlatformUtils.isWeb) {
    return const FlutterCustomMemoryImageCursor(key: 'resizeUpLeftDownRight');
  }

  return SystemMouseCursors.resizeUpLeftDownRight;
}