uncap property

String get uncap

Makes the first letter of the string lowercase.

Implementation

String get uncap {
  if (isBlank) return "";
  final trimmed = trim();
  return trimmed[0].toLowerCase() + trimmed.substring(1);
}