Skip to content

Commit 56be86d

Browse files
authored
fix(flutter): Add missing experimental for privacy options before GA (#14014)
1 parent d3024f5 commit 56be86d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform-includes/replay/privacy-configuration/dart.flutter.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ For example, you can explicitly mask or unmask widgets by type,
1717
or you can even have a callback to decide whether a specific widget instance should be masked:
1818

1919
```dart
20-
options.privacy.mask<IconButton>();
21-
options.privacy.unmask<Image>();
22-
options.privacy.maskCallback<Text>(
20+
options.experimental.privacy.mask<IconButton>();
21+
options.experimental.privacy.unmask<Image>();
22+
options.experimental.privacy.maskCallback<Text>(
2323
(Element element, Text widget) =>
2424
(widget.data?.contains('secret') ?? false)
2525
? SentryMaskingDecision.mask

0 commit comments

Comments
 (0)