ziton_error 0.0.3 ziton_error: ^0.0.3 copied to clipboard
A Flutter package for error monitoring and reporting (ziton.live)
Ziton Error #
A Flutter package for error monitoring and reporting. Listen for common flutter errors & push error details along with Stack trace, platform & screen information to ziton project dashboard when it occurs at debug level. Production level errors are reported using reportError Function where user can specify custom error message and description, platform and screen information along with error message pushed to ziton dashboard.
Features #
- Error information with context
- Platform and screen information
- Error file info with lines causing error
- Project panel for collaboration
- Assign & share errors
- Report error in production mode
Getting Started #
0. Create project #
Create a flutter project in Ziton dashboard and copy down the dsn for that project
1. Depend on it #
Add package name with version to your package's pubspec.yaml
file:
dependencies:
ziton_error 0.0.1
2. Install it #
Install packages from the command line:
with pub
:
$ pub get
with Flutter
:
$ flutter pub get
3. Import it #
Import in Dart
contains runApp function, you can use:
import 'package:ziton_error/ziton_error.dart';
Usage #
Import package and Listen for errors with ZitonError function
//call FlutterError function inside main()
void main() {
FlutterError.onError = (FlutterErrorDetails errorDetails){
//report error to ziton
ZitonError("your dsn",errorDetails);
};
runApp(const MyApp());
}
dsn is the unique key provided to each project, look something like this
https://OokNpSGxxxxxxxxxxxxxxxxxxxxxcFNCUmYwhQhwXiouYWbTFy.ziton.live
Additional information #
head on to Ziton Home for further information.