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

@ -19,7 +19,7 @@ class Settings3Pid extends StatefulWidget {
}
class Settings3PidController extends State<Settings3Pid> {
void add3PidAction() async {
Future<void> add3PidAction() async {
final input = await showTextInputDialog(
useRootNavigator: false,
context: context,
@ -63,7 +63,7 @@ class Settings3PidController extends State<Settings3Pid> {
Future<List<ThirdPartyIdentifier>?>? request;
void delete3Pid(ThirdPartyIdentifier identifier) async {
Future<void> delete3Pid(ThirdPartyIdentifier identifier) async {
if (await showOkCancelAlertDialog(
useRootNavigator: false,
context: context,