toAlternativeLiteral method

AlternativeLiterals toAlternativeLiteral()

Implementation

AlternativeLiterals toAlternativeLiteral() {
  final alts = <String>[];

  for (int i = start; i <= end; i++) {
    alts.add(String.fromCharCode(i));
  }
  return alternativeLiterals(alts);
}