Skip to content

Instantly share code, notes, and snippets.

@piumimaheshika
Last active January 7, 2021 07:26
Show Gist options
  • Select an option

  • Save piumimaheshika/4c07c364651498463ba1d72c4a2b5871 to your computer and use it in GitHub Desktop.

Select an option

Save piumimaheshika/4c07c364651498463ba1d72c4a2b5871 to your computer and use it in GitHub Desktop.
flutter crashlytics
main() {
WidgetsFlutterBinding.ensureInitialized();
runZonedGuarded(() {
runApp(Wrapper());
}, (error, stackTrace) {
print('runZonedGuarded: Caught error in my root zone.');
FirebaseCrashlytics.instance.recordError(error, stackTrace);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment