convertListToStringAndJoin function
- {List? typeList}
Implementation
String convertListToStringAndJoin({List? typeList}) {
List text = [];
if (typeList != null) {
typeList.forEach((element) {
text.add(element.name);
});
return text.join(" | ");
} else {
return '';
}
}