hindsight_sentry library

Sentry integration for the hindsight session replay SDK.

Add HindsightSentryIntegration to your Sentry options and every error report carries a one-click link to the session replay:

await Hindsight.init(HindsightConfig(
  projectId: 'my-app',
  apiKey: 'hs_...',
));

await SentryFlutter.init(
  (options) {
    options.dsn = '...';
    options.addIntegration(HindsightSentryIntegration());
  },
  appRunner: () => runApp(HindsightWidget(child: MyApp())),
);

Classes

HindsightSentryIntegration
Connects hindsight session replay to Sentry.