// // Generated file. Do not edit. // This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`. // // @dart = 3.6 import 'dart:io'; // flutter_ignore: dart_io_import. import 'package:file_picker/file_picker.dart'; import 'package:image_picker_android/image_picker_android.dart'; import 'package:shared_preferences_android/shared_preferences_android.dart'; import 'package:file_picker/file_picker.dart'; import 'package:image_picker_ios/image_picker_ios.dart'; import 'package:shared_preferences_foundation/shared_preferences_foundation.dart'; import 'package:file_picker/file_picker.dart'; import 'package:file_selector_linux/file_selector_linux.dart'; import 'package:image_picker_linux/image_picker_linux.dart'; import 'package:path_provider_linux/path_provider_linux.dart'; import 'package:shared_preferences_linux/shared_preferences_linux.dart'; import 'package:file_picker/file_picker.dart'; import 'package:file_selector_macos/file_selector_macos.dart'; import 'package:image_picker_macos/image_picker_macos.dart'; import 'package:shared_preferences_foundation/shared_preferences_foundation.dart'; import 'package:file_picker/file_picker.dart'; import 'package:file_selector_windows/file_selector_windows.dart'; import 'package:image_picker_windows/image_picker_windows.dart'; import 'package:path_provider_windows/path_provider_windows.dart'; import 'package:shared_preferences_windows/shared_preferences_windows.dart'; @pragma('vm:entry-point') class _PluginRegistrant { @pragma('vm:entry-point') static void register() { if (Platform.isAndroid) { try { FilePickerIO.registerWith(); } catch (err) { print( '`file_picker` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { ImagePickerAndroid.registerWith(); } catch (err) { print( '`image_picker_android` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { SharedPreferencesAndroid.registerWith(); } catch (err) { print( '`shared_preferences_android` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } } else if (Platform.isIOS) { try { FilePickerIO.registerWith(); } catch (err) { print( '`file_picker` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { ImagePickerIOS.registerWith(); } catch (err) { print( '`image_picker_ios` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { SharedPreferencesFoundation.registerWith(); } catch (err) { print( '`shared_preferences_foundation` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } } else if (Platform.isLinux) { try { FilePickerLinux.registerWith(); } catch (err) { print( '`file_picker` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { FileSelectorLinux.registerWith(); } catch (err) { print( '`file_selector_linux` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { ImagePickerLinux.registerWith(); } catch (err) { print( '`image_picker_linux` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { PathProviderLinux.registerWith(); } catch (err) { print( '`path_provider_linux` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { SharedPreferencesLinux.registerWith(); } catch (err) { print( '`shared_preferences_linux` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } } else if (Platform.isMacOS) { try { FilePickerMacOS.registerWith(); } catch (err) { print( '`file_picker` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { FileSelectorMacOS.registerWith(); } catch (err) { print( '`file_selector_macos` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { ImagePickerMacOS.registerWith(); } catch (err) { print( '`image_picker_macos` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { SharedPreferencesFoundation.registerWith(); } catch (err) { print( '`shared_preferences_foundation` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } } else if (Platform.isWindows) { try { FilePickerWindows.registerWith(); } catch (err) { print( '`file_picker` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { FileSelectorWindows.registerWith(); } catch (err) { print( '`file_selector_windows` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { ImagePickerWindows.registerWith(); } catch (err) { print( '`image_picker_windows` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { PathProviderWindows.registerWith(); } catch (err) { print( '`path_provider_windows` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } try { SharedPreferencesWindows.registerWith(); } catch (err) { print( '`shared_preferences_windows` threw an error: $err. ' 'The app may not function as expected until you remove this plugin from pubspec.yaml' ); } } } }