lastLetter property

String get lastLetter

Implementation

String get lastLetter {
  if (isEmpty) {
    return '';
  }
  return this[length - 1];
}