firstLetter method

String firstLetter()

Implementation

String firstLetter() {
  return isNotEmpty ? this[0] : '';
}