File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -188,10 +188,18 @@ class SentryFlutterOptions extends SentryOptions {
188
188
/// The [SentryScreenshotWidget] has to be the root widget of the app.
189
189
bool attachScreenshot = false ;
190
190
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()));
192
196
bool enableUserInteractionBreadcrumbs = true ;
193
197
194
198
/// 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()));
195
203
bool enableUserInteractionTracing = false ;
196
204
197
205
@internal
You can’t perform that action at this time.
0 commit comments