extApiV2DataTypeExplodedListToJson function

String extApiV2DataTypeExplodedListToJson(
  1. List<ExtApiV2DataType>? extApiV2DataType
)

Implementation

String extApiV2DataTypeExplodedListToJson(
    List<enums.ExtApiV2DataType>? extApiV2DataType) {
  return extApiV2DataType?.map((e) => e.value!).join(',') ?? '';
}