List<String> strategyListToJson(List<enums.Strategy>? strategy) { if (strategy == null) { return []; } return strategy.map((e) => enums.$StrategyMap[e]!).toList(); }