import '../startup.dart'; class InitSentryTask extends LaunchTask { const InitSentryTask(); @override Future initialize(LaunchContext context) async { // Disable sentry temporarily, it will cause the app unresponsive return; // const dsn = Env.sentryDsn; // if (dsn.isEmpty) { // Log.info('Sentry DSN is not set, skipping initialization'); // return; // } // Log.info('Initializing Sentry'); // await SentryFlutter.init( // (options) { // options.dsn = dsn; // options.tracesSampleRate = 0.1; // options.profilesSampleRate = 0.1; // }, // ); } @override Future dispose() async {} }