refactor: Update flutter lints

This commit is contained in:
Christian Kußowski 2025-11-30 12:42:04 +01:00
commit 35983437e2
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
15 changed files with 43 additions and 82 deletions

View file

@ -69,7 +69,7 @@ class _CuteContentState extends State<CuteContent> {
Overlay.of(context).insert(overlay);
}
generateLabel(User? user) {
String? generateLabel(User? user) {
switch (widget.event.content['cute_type']) {
case 'googly_eyes':
return L10n.of(context).googlyEyesContent(
@ -90,6 +90,7 @@ class _CuteContentState extends State<CuteContent> {
'',
);
}
return null;
}
}