chore(all): Format

This commit is contained in:
2023-04-12 16:16:58 +02:00
parent 67c1903bd1
commit 9dcc99ca36
22 changed files with 913 additions and 625 deletions

View File

@@ -2,11 +2,9 @@ part of 'navigation_bloc.dart';
class NavigationDestination {
const NavigationDestination(
this.path,
{
this.arguments,
}
);
this.path, {
this.arguments,
});
final String path;
final Object? arguments;
}