graphemeAt method

String graphemeAt(
  1. int index
)

Get a grapheme from a string specified at an index

Implementation

String graphemeAt(int index) => this.characters.elementAt(index);