firstLetter method

String firstLetter()

Implementation

String firstLetter() => length > 0 ? substring(0, 1) : 'U';