in src/lib/store/modules/group.store.js [177:185]
getGroupUsers(state) {
return ({groupId}) => {
if (state.groupUserListMap[groupId]) {
return state.groupUserListMap[groupId];
} else {
return null;
}
}
}