string function

String string(
  1. List<String> x
)

Creates a string from the characters in x.

Implementation

String string(List<String> x) => x.join('');