widgetExpandableExplodedListToJson function
Implementation
String widgetExpandableExplodedListToJson(
List<enums.WidgetExpandable>? widgetExpandable) {
return widgetExpandable?.map((e) => e.value!).join(',') ?? '';
}
String widgetExpandableExplodedListToJson(
List<enums.WidgetExpandable>? widgetExpandable) {
return widgetExpandable?.map((e) => e.value!).join(',') ?? '';
}