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