usageAggregationIntervalExplodedListToJson function

String usageAggregationIntervalExplodedListToJson(
  1. List<UsageAggregationInterval>? usageAggregationInterval
)

Implementation

String usageAggregationIntervalExplodedListToJson(
    List<enums.UsageAggregationInterval>? usageAggregationInterval) {
  return usageAggregationInterval?.map((e) => e.value!).join(',') ?? '';
}