homeownerConsentActionV2ExplodedListToJson function

String homeownerConsentActionV2ExplodedListToJson(
  1. List<HomeownerConsentActionV2>? homeownerConsentActionV2
)

Implementation

String homeownerConsentActionV2ExplodedListToJson(
    List<enums.HomeownerConsentActionV2>? homeownerConsentActionV2) {
  return homeownerConsentActionV2?.map((e) => e.value!).join(',') ?? '';
}