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