31 lines
769 B
Dart
31 lines
769 B
Dart
// @dart=3.0
|
|
// Flutter web bootstrap script for package:geosector_app/main.dart.
|
|
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
import 'dart:ui_web' as ui_web;
|
|
import 'dart:async';
|
|
|
|
import 'package:geosector_app/main.dart' as entrypoint;
|
|
import 'web_plugin_registrant.dart' as pluginRegistrant;
|
|
|
|
typedef _UnaryFunction = dynamic Function(List<String> args);
|
|
typedef _NullaryFunction = dynamic Function();
|
|
|
|
Future<void> main() async {
|
|
await ui_web.bootstrapEngine(
|
|
runApp: () {
|
|
if (entrypoint.main is _UnaryFunction) {
|
|
return (entrypoint.main as _UnaryFunction)(<String>[]);
|
|
}
|
|
return (entrypoint.main as _NullaryFunction)();
|
|
},
|
|
registerPlugins: () {
|
|
pluginRegistrant.registerPlugins();
|
|
},
|
|
);
|
|
}
|