Last active
March 30, 2021 17:43
-
-
Save bradintheusa/cab8e22e2dc199d0e7325680d43c36a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/widgets.dart'; | |
| import 'package:sentry_flutter/sentry_flutter.dart'; | |
| Future<void> main() async { | |
| await SentryFlutter.init( | |
| (options) => options.dsn = 'https://examplePublicKey@o0.ingest.sentry.io/0', | |
| appRunner: () => runApp(MyApp()), | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment