Removed unnecessary declared attributes
This commit is contained in:
@@ -148,7 +148,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
|
||||
final groupName = _groupNameController.text.trim();
|
||||
|
||||
final success = await db.groupDao.addGroup(
|
||||
group: Group(name: groupName, description: '', members: selectedPlayers),
|
||||
group: Group(name: groupName, members: selectedPlayers),
|
||||
);
|
||||
|
||||
return success;
|
||||
|
||||
@@ -36,7 +36,7 @@ class _GroupViewState extends State<GroupView> {
|
||||
Group(
|
||||
name: 'Skeleton Group',
|
||||
description: '',
|
||||
members: List.filled(6, Player(name: 'Skeleton Player', description: '')),
|
||||
members: List.filled(6, Player(name: 'Skeleton Player')),
|
||||
),
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user