You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
786 B
23 lines
786 B
// Flutter web plugin registrant file.
|
|
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// @dart = 2.13
|
|
// ignore_for_file: type=lint
|
|
|
|
import 'package:fluttertoast/fluttertoast_web.dart';
|
|
import 'package:geolocator_web/geolocator_web.dart';
|
|
import 'package:image_picker_for_web/image_picker_for_web.dart';
|
|
import 'package:shared_preferences_web/shared_preferences_web.dart';
|
|
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
|
|
|
void registerPlugins([final Registrar? pluginRegistrar]) {
|
|
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar;
|
|
FluttertoastWebPlugin.registerWith(registrar);
|
|
GeolocatorPlugin.registerWith(registrar);
|
|
ImagePickerPlugin.registerWith(registrar);
|
|
SharedPreferencesPlugin.registerWith(registrar);
|
|
registrar.registerMessageHandler();
|
|
}
|