momentMoodExplodedListToJson function

String momentMoodExplodedListToJson(
  1. List<MomentMood>? momentMood
)

Implementation

String momentMoodExplodedListToJson(List<enums.MomentMood>? momentMood) {
  return momentMood?.map((e) => e.value!).join(',') ?? '';
}