List<String> roleDTOListToJson(List<enums.RoleDTO>? roleDTO) { if (roleDTO == null) { return []; } return roleDTO.map((e) => e.value!).toList(); }