fix lints

This commit is contained in:
Fabian Freund
2026-02-16 19:59:32 +01:00
parent cfa7e3ac89
commit 645bbb9b53
78 changed files with 244 additions and 210 deletions
@@ -22,7 +22,7 @@ import 'package:flutter/material.dart';
class SettingSection extends StatelessWidget {
final String name;
const SettingSection({required this.name});
const SettingSection({super.key, required this.name});
@override
Widget build(BuildContext context) {
@@ -43,7 +43,7 @@ class SettingSection extends StatelessWidget {
class SettingSubSection extends StatelessWidget {
final String name;
const SettingSubSection({required this.name});
const SettingSubSection({super.key, required this.name});
@override
Widget build(BuildContext context) {