firstToLowerCase method
Implementation
String firstToLowerCase() {
if (isEmpty) return this;
var split = this.split('');
split[0] = split[0].toLowerCase();
return split.join();
}
String firstToLowerCase() {
if (isEmpty) return this;
var split = this.split('');
split[0] = split[0].toLowerCase();
return split.join();
}