refactor: Enable more strict lints

This commit is contained in:
Christian Kußowski 2026-02-24 10:04:40 +01:00
commit 28af7bb0c7
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
65 changed files with 170 additions and 146 deletions

View file

@ -245,7 +245,7 @@ class EmotesSettingsController extends State<EmotesSettings> {
});
}
void createImagePack() async {
Future<void> createImagePack() async {
final room = this.room;
if (room == null) throw Exception('Cannot create image pack without room');
@ -287,14 +287,14 @@ class EmotesSettingsController extends State<EmotesSettings> {
setState(() {});
}
void saveAction() async {
Future<void> saveAction() async {
await save(context);
setState(() {
showSave = false;
});
}
void createStickers() async {
Future<void> createStickers() async {
final pickedFiles = await selectFiles(
context,
type: FileType.image,