toLowerFirst property

String toLowerFirst

Converts the first character of string to upper case and the remaining to lower case Example: "helloWorld" -> "HelloWorld"

Implementation

String get toLowerFirst => lowerFirst(this);