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