homeownerConsentActionDTOExplodedListToJson function

String homeownerConsentActionDTOExplodedListToJson(
  1. List<HomeownerConsentActionDTO>? homeownerConsentActionDTO
)

Implementation

String homeownerConsentActionDTOExplodedListToJson(
    List<enums.HomeownerConsentActionDTO>? homeownerConsentActionDTO) {
  return homeownerConsentActionDTO?.map((e) => e.value!).join(',') ?? '';
}