I would like to use Sentry in my application, but support for web is broken because the Sentry.init function requires an appRunner delegate in order to work.
Example:
await SentryFlutter.init(
(options) {
options.dsn = mydsn;
options.tracesSampleRate = 1.0;
options.profilesSampleRate = 1.0;
},
appRunner: () => runApp(MyApp()),
);