Skip to content

Commit f232b59

Browse files
committed
🎨 Formatted files
1 parent ec1fbca commit f232b59

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/common/run_app_bootstrap.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ typedef OnError = void Function(Object error, StackTrace? stackTrace);
88

99
/// Run a Flutter app with a bootstrap that catches errors.
1010
/// By default [onError] will use BoltLogger to log the error.
11-
Future<void> runAppBootstrap(Future<Widget> Function() builder,
12-
{OnError? onError}) async {
11+
Future<void> runAppBootstrap(
12+
Future<Widget> Function() builder, {
13+
OnError? onError,
14+
}) async {
1315
final errorLogger = onError ??
1416
(exception, stackTrace) {
1517
BoltLogger.shock([exception, stackTrace]);

0 commit comments

Comments
 (0)