firstLetter property

String get firstLetter

Implementation

String get firstLetter =>
    isNotNullOrEmpty ? this?.substring(0, 1) ?? "E" : "E";