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

@ -5,7 +5,7 @@ import '../../../../storage/base/settingsProvider.dart';
import '../../../../widget/confirmDialog.dart';
class GradeAverage extends StatefulWidget {
const GradeAverage({Key? key}) : super(key: key);
const GradeAverage({super.key});
@override
State<GradeAverage> createState() => _GradeAverageState();

View File

@ -8,7 +8,7 @@ import 'messageView.dart';
class Message extends StatefulWidget {
const Message({Key? key}) : super(key: key);
const Message({super.key});
@override
State<Message> createState() => _MessageState();

View File

@ -8,7 +8,7 @@ import '../../../../widget/confirmDialog.dart';
class MessageView extends StatefulWidget {
final String basePath;
final GetMessagesResponseObject message;
const MessageView({Key? key, required this.basePath, required this.message}) : super(key: key);
const MessageView({super.key, required this.basePath, required this.message});
@override
State<MessageView> createState() => _MessageViewState();

View File

@ -11,7 +11,7 @@ import 'roomplan/roomplan.dart';
import 'share/selectShareTypeDialog.dart';
class Overhang extends StatelessWidget {
const Overhang({Key? key}) : super(key: key);
const Overhang({super.key});
@override
Widget build(BuildContext context) {

View File

@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import 'package:photo_view/photo_view.dart';
class Roomplan extends StatelessWidget {
const Roomplan({Key? key}) : super(key: key);
const Roomplan({super.key});
@override
Widget build(BuildContext context) {