hubCommandTypeExplodedListToJson function

String hubCommandTypeExplodedListToJson(
  1. List<HubCommandType>? hubCommandType
)

Implementation

String hubCommandTypeExplodedListToJson(
    List<enums.HubCommandType>? hubCommandType) {
  return hubCommandType?.map((e) => e.value!).join(',') ?? '';
}