toCharArray method

List<String> toCharArray()

Returns a list of characters from the string.

Implementation

List<String> toCharArray() => isNotBlank ? this!.split('') : [];