firstLetterLowercaseOrFiller method

String firstLetterLowercaseOrFiller()

Implementation

String firstLetterLowercaseOrFiller() {
  if (this?.isEmpty ?? true) {
    return '?????';
  }

  String s = this!;

  return s[0].toLowerCase() + (s.length > 1 ? s.substring(1, s.length) : '');
}