lowercaseFirst property

String lowercaseFirst

Lowercase first letter of string Example: Your Name => your Name

Implementation

String get lowercaseFirst => isBlank == true
    ? ""
    : length == 1
        ? lowercase
        : this[0].lowercase + substring(1);