join method

String join([
  1. String separator = ''
])

Implementation

String join([String separator = '']) => toIterable()!.join(separator);