List<String> hubModeListToJson(List<enums.HubMode>? hubMode) { if (hubMode == null) { return []; } return hubMode.map((e) => e.value!).toList(); }