1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 16:25:17 +00:00

Fix a few notices

This commit is contained in:
2022-03-11 16:41:29 +01:00
parent adbc036c16
commit f0f7096c94
6 changed files with 5 additions and 18 deletions

View File

@ -199,11 +199,7 @@ class _NotificationTile extends StatelessWidget {
required this.usersList,
required this.groupsList,
required this.onDelete,
}) : assert(notification != null),
assert(usersList != null),
assert(groupsList != null),
assert(onDelete != null),
super(key: key);
}) : super(key: key);
@override
Widget build(BuildContext context) {

View File

@ -19,9 +19,7 @@ class OtherUserFriendsListScreen extends StatefulWidget {
Key? key,
required this.userID,
this.enableAppBar = true,
}) : assert(userID != null),
assert(enableAppBar != null),
super(key: key);
}) : super(key: key);
@override
_OtherUserFriendsListScreenState createState() =>

View File

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