Skip to content

Commit b02f4e2

Browse files
committed
options
1 parent e886d5a commit b02f4e2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

flutter/lib/src/sentry_flutter_options.dart

+9-1
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,18 @@ class SentryFlutterOptions extends SentryOptions {
188188
/// The [SentryScreenshotWidget] has to be the root widget of the app.
189189
bool attachScreenshot = false;
190190

191-
/// Enable or disable automatic breadcrumbs for User interactions Using Window.Callback
191+
/// Enable or disable automatic breadcrumbs for User interactions Using [Listener]
192+
///
193+
/// Requires adding the [SentryUserInteractionWidget] to the widget tree.
194+
/// Example:
195+
/// runApp(SentryUserInteractionWidget(child: App()));
192196
bool enableUserInteractionBreadcrumbs = true;
193197

194198
/// Enables the Auto instrumentation for user interaction tracing.
199+
///
200+
/// Requires adding the [SentryUserInteractionWidget] to the widget tree.
201+
/// Example:
202+
/// runApp(SentryUserInteractionWidget(child: App()));
195203
bool enableUserInteractionTracing = false;
196204

197205
@internal

0 commit comments

Comments
 (0)