Skip to content

Instantly share code, notes, and snippets.

View bradintheusa's full-sized avatar
🏐
Cloud Functions & Flutter

BradInTheUSA bradintheusa

🏐
Cloud Functions & Flutter
View GitHub Profile
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()),
);
}