refena_sentry 0.1.2 refena_sentry: ^0.1.2 copied to clipboard
Adds Sentry integration to the Refena state management library.
example/refena_sentry_example.dart
import 'package:refena/refena.dart';
import 'package:refena_sentry/refena_sentry.dart';
import 'package:sentry/sentry.dart';
void main() async {
await Sentry.init(
(options) {
options.dsn = 'https://example@sentry.io/example';
},
appRunner: () {
final container = RefenaContainer(
observers: [
RefenaSentryObserver(),
],
);
container.dispatch(ErrorAction());
},
);
}
class ErrorAction extends GlobalAction {
@override
void reduce() {
throw Exception('ErrorAction');
}
}