checkIfUserFollowsGroup function Null safety
Implementation
Future<bool> checkIfUserFollowsGroup(String token, String groupId) async {
var response = await checkIfUserFollowsUserResponse(token, groupId);
if (response.statusCode == 200) {
return true;
} else {
return false;
}
}