join method

String join(
  1. List<String> words
)

Implementation

String join(List<String> words) {
  return words.join(' ');
}