batchCallRecipientStatusExplodedListToJson function

String batchCallRecipientStatusExplodedListToJson(
  1. List<BatchCallRecipientStatus>? batchCallRecipientStatus
)

Implementation

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