How to send specific information in Sentry ? There is Events in documentation but how to use them properly and where exactly to use them (EX: Send user email with the error) ?
Sentry provided this source code but where exactly I have to use it? :
Sentry.configureScope(
(scope) => scope.user = SentryUser(id: '1234', email: '[email protected]'),
);
And also how to stop sending reports in debug mode ?
options.debug = kDebugMode;
to get them back. – Embrey