Apply dart auto fixes

This commit is contained in:
2024-01-14 11:58:16 +01:00
parent b0bddb5cd7
commit 9edbfd81af
29 changed files with 29 additions and 31 deletions

View File

@ -4,7 +4,7 @@ class PlaceholderView extends StatelessWidget {
final IconData icon;
final String text;
final Widget? button;
const PlaceholderView({Key? key, required this.icon, required this.text, this.button}) : super(key: key);
const PlaceholderView({super.key, required this.icon, required this.text, this.button});
@override
Widget build(BuildContext context) {