join method

  1. @override
String join(
  1. [String separator = ""]
)
override

Converts the items in the list to a string and concatenates them using the provided separator.

Implementation

@override
String join([String separator = ""]) => _items.join(separator);