toList method

List<String> toList()

It return list of single character from String

Implementation

List<String> toList() {
  return this.validate().trim().split('');
}