workoutSourceExplodedListToJson function
Implementation
String workoutSourceExplodedListToJson(
    List<enums.WorkoutSource>? workoutSource) {
  return workoutSource?.map((e) => e.value!).join(',') ?? '';
}String workoutSourceExplodedListToJson(
    List<enums.WorkoutSource>? workoutSource) {
  return workoutSource?.map((e) => e.value!).join(',') ?? '';
}