We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea4cfbc commit c5c59c5Copy full SHA for c5c59c5
docs/platforms/flutter/index.mdx
@@ -123,7 +123,7 @@ Verify that your app is sending events to Sentry by adding the following snippet
123
import 'package:sentry/sentry.dart';
124
125
try {
126
- aMethodThatMightFail();
+ throw Exception('Sentry Test Exception');
127
} catch (exception, stackTrace) {
128
await Sentry.captureException(
129
exception,
platform-includes/capture-error/dart.mdx
@@ -4,7 +4,7 @@ In Dart you can capture any exception object that you caught:
4
5
6
7
8
9
10
0 commit comments