getDottedString static method
Implementation
static getDottedString(List<String> values) {
var dottedString = "";
for(String value in values){
if(dottedString.isEmpty){
dottedString = dottedString + value;
}
else{
dottedString = dottedString + " " + FILLED_DOT + " " + value;
}
}
return dottedString;
}