rAGIndexStatusExplodedListToJson function
Implementation
String rAGIndexStatusExplodedListToJson(
List<enums.RAGIndexStatus>? rAGIndexStatus) {
return rAGIndexStatus?.map((e) => e.value!).join(',') ?? '';
}
String rAGIndexStatusExplodedListToJson(
List<enums.RAGIndexStatus>? rAGIndexStatus) {
return rAGIndexStatus?.map((e) => e.value!).join(',') ?? '';
}