Skip to content

Commit fd4be90

Browse files
authored
Update inAppIncludes and inAppExcludes examples (#273)
1 parent 299e3f8 commit fd4be90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/posthog_config.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class PostHogErrorTrackingConfig {
199199
/// List of package names to be considered inApp frames for exception tracking
200200
///
201201
/// inApp Example:
202-
/// inAppIncludes = ["package:your_app", "package:your_company_utils"]
202+
/// inAppIncludes.addAll(["package:your_app", "package:your_company_utils"])
203203
/// All exception stacktrace frames from these packages will be considered inApp
204204
///
205205
/// This option takes precedence over inAppExcludes.
@@ -215,7 +215,7 @@ class PostHogErrorTrackingConfig {
215215
/// List of package names to be excluded from inApp frames for exception tracking
216216
///
217217
/// inAppExcludes Example:
218-
/// inAppExcludes = ["package:third_party_lib", "package:analytics_package"]
218+
/// inAppExcludes.addAll(["package:third_party_lib", "package:analytics_package"])
219219
/// All exception stacktrace frames from these packages will be considered external
220220
///
221221
/// Note: inAppIncludes takes precedence over this setting.

0 commit comments

Comments
 (0)