connectionTypeV2ExplodedListToJson function

String connectionTypeV2ExplodedListToJson(
  1. List<ConnectionTypeV2>? connectionTypeV2
)

Implementation

String connectionTypeV2ExplodedListToJson(
    List<enums.ConnectionTypeV2>? connectionTypeV2) {
  return connectionTypeV2?.map((e) => e.value!).join(',') ?? '';
}