chapterWithContentResponseModelStateExplodedListToJson function

String chapterWithContentResponseModelStateExplodedListToJson(
  1. List<ChapterWithContentResponseModelState>? chapterWithContentResponseModelState
)

Implementation

String chapterWithContentResponseModelStateExplodedListToJson(
    List<enums.ChapterWithContentResponseModelState>?
        chapterWithContentResponseModelState) {
  return chapterWithContentResponseModelState?.map((e) => e.value!).join(',') ??
      '';
}