workoutSourceNullableToJson function

String? workoutSourceNullableToJson(
  1. WorkoutSource? workoutSource
)

Implementation

String? workoutSourceNullableToJson(enums.WorkoutSource? workoutSource) {
  return workoutSource?.value;
}