workoutSourceListToJson function

List<String> workoutSourceListToJson(
  1. List<WorkoutSource>? workoutSource
)

Implementation

List<String> workoutSourceListToJson(List<enums.WorkoutSource>? workoutSource) {
  if (workoutSource == null) {
    return [];
  }

  return workoutSource.map((e) => e.value!).toList();
}