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