Skip to content

Commit

Permalink
Toast handler supported in all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
jhomlala committed Apr 2, 2021
1 parent dd6a154 commit 70f25da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## 0.6.4
* Added excludedParameters in CatcherOptions.
* Updated dependencies
* [BREAKING_CHANGE] Added isContextRequired parameter for ReportHandler.
* [BREAKING_CHANGE] ReportHandler handle method requires additional BuildContext parameter.
* [BREAKING_CHANGE] Toast handler supports now all platforms.

## 0.6.3
* Updated sentry version.
Expand Down
6 changes: 3 additions & 3 deletions lib/model/catcher_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class CatcherOptions {
explicitExceptionHandlersMap = {},
handleSilentError = true,
screenshotsPath = "",
this.excludedParameters = const [];
excludedParameters = const [];

/// Builds default catcher options debug instance
CatcherOptions.getDefaultDebugOptions()
Expand All @@ -77,7 +77,7 @@ class CatcherOptions {
explicitExceptionHandlersMap = {},
handleSilentError = true,
screenshotsPath = "",
this.excludedParameters = const [];
excludedParameters = const [];

/// Builds default catcher options profile instance
CatcherOptions.getDefaultProfileOptions()
Expand All @@ -90,5 +90,5 @@ class CatcherOptions {
explicitExceptionHandlersMap = {},
handleSilentError = true,
screenshotsPath = "",
this.excludedParameters = const [];
excludedParameters = const [];
}
2 changes: 1 addition & 1 deletion platform_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Check table below to see which features are enabled in Platforms:
| Http handler |||||||
| Sentry handler |||||||
| Slack handler |||||||
| Toast handler |||| | | |
| Toast handler |||| | | |
| Custom handler |||||||
| Dialog report mode |||||||
| Page report mode |||||||
Expand Down

0 comments on commit 70f25da

Please sign in to comment.