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