toStringElements method

List<String> toStringElements()

Creates a new List<String>, mapping each element to a String.

Implementation

List<String> toStringElements() => map((e) => '$e').toList();