decapitalize property

String get decapitalize

Implementation

String get decapitalize {
  return toLowerCase()[0] + substring(1);
}