chore: update package lints and apply fixes

This commit is contained in:
Gordon Hayes
2022-10-06 14:31:51 +02:00
parent fe029b35d0
commit 3ae658e204
29 changed files with 481 additions and 462 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ void main() async {
}
};
Future<void> _reportError(dynamic error, StackTrace stackTrace) async {
Future<void> reportError(dynamic error, StackTrace stackTrace) async {
// Print the exception to the console.
if (kDebugMode) {
// Print the full stacktrace in debug mode.
@@ -36,8 +36,8 @@ void main() async {
await SentryFlutter.init(
(options) => options.dsn = sentryDsn,
);
runApp(MyApp());
runApp(const StreamChatSampleApp());
},
_reportError,
reportError,
);
}