Hi everyone, I was trying to integrate sentry in a flutter app, I've been successfully sending sentry error log when setting up which is using:
exception,
stackTrace: stackTrace,
);
But I think after setting up the Sentry, it should've always send the error to Sentry right? I don't have to add Sentry.captureException whenever I have error?
This is my initialization on Flutter's app:
await SentryFlutter.init(
(options) {
options
..dsn =
'https://xxx.ingest.us.sentry.io/x'
..tracesSampleRate = 1.0
..profilesSampleRate = 1.0
..enableTimeToFullDisplayTracing = true;
},
appRunner: _runApp,
);
Thanks everyone.