upperCaseFirst method
Deixa a primeira letra da palavra em maiusculo, e o restantante como estava
Implementation
String? upperCaseFirst() {
if (this != null) {
if (this!.length > 1) {
return this!.substring(0, 1).toUpperCase() + this!.substring(1);
} else
return this!.toUpperCase();
} else
return this;
}