List<String> fmiDTOListToJson(List<enums.FmiDTO>? fmiDTO) { if (fmiDTO == null) { return []; } return fmiDTO.map((e) => e.value!).toList(); }