feat: Implement account management functionality with loading, creation, and error handling

This commit is contained in:
Dayron
2025-10-21 10:48:12 +02:00
parent c69618cbd9
commit 62eb434548
9 changed files with 520 additions and 245 deletions

View File

@@ -58,12 +58,4 @@ class GroupService {
}).toList();
});
}
Future<void> removeMemberFromGroup(String groupId, String memberId) async {
// TODO: Implémenter la suppression d'un membre d'un groupe
}
Future<void> addMemberToGroup(String groupId, String memberId) async {
// TODO: Implémenter l'ajout d'un membre à un groupe
}
}