File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments