resizeUpRightDownLeft property

MouseCursor get resizeUpRightDownLeft

Returns a resize up-right down-left MouseCursor.

Implementation

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

  return SystemMouseCursors.resizeUpRightDownLeft;
}