1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-20 08:45:17 +00:00

Finish to fix notices

This commit is contained in:
2022-03-11 17:16:46 +01:00
parent 48c9ee37b6
commit 9e6d3761fe
8 changed files with 11 additions and 34 deletions

View File

@ -18,9 +18,7 @@ class MultiChoiceEntry<T> {
required this.title,
this.subtitle,
this.hidden = false,
}) : assert(id != null),
assert(title != null),
assert(hidden != null);
}) : assert(id != null);
bool get hasSubtitle => subtitle != null;
}

View File

@ -15,8 +15,7 @@ class UserWritingInConvNotifier extends StatefulWidget {
final int convID;
const UserWritingInConvNotifier({Key? key, required this.convID})
: assert(convID != null),
super(key: key);
: super(key: key);
@override
_UserWritingInConvNotifierState createState() =>