widgetExpandableExplodedListToJson function

String widgetExpandableExplodedListToJson(
  1. List<WidgetExpandable>? widgetExpandable
)

Implementation

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