ensureInitialized static method

Future<void> ensureInitialized()

Ensures these CustomMouseCursors are initialized.

Implementation

static Future<void> ensureInitialized() async {
  if (!_initialized) {
    _initialized = true;

    if (!PlatformUtils.isWeb) {
      if (PlatformUtils.isWindows) {
        await _initCursor('assets/images/grab.bgra', 'grab');
        await _initCursor('assets/images/grabbing.bgra', 'grabbing');
      } else if (PlatformUtils.isMacOS) {
        await _initCursor(
          'assets/images/resizeUpLeftDownRight.png',
          'resizeUpLeftDownRight',
          width: 15,
          height: 15,
        );
        await _initCursor(
          'assets/images/resizeUpRightDownLeft.png',
          'resizeUpRightDownLeft',
          width: 15,
          height: 15,
        );
      }
    }
  }
}