momentTypeExplodedListToJson function

String momentTypeExplodedListToJson(
  1. List<MomentType>? momentType
)

Implementation

String momentTypeExplodedListToJson(List<enums.MomentType>? momentType) {
  return momentType?.map((e) => e.value!).join(',') ?? '';
}