toTitleCase method
Implementation
String toTitleCase() {
final firstWord = toCamelCase();
return '${firstWord.substring(0, 1).toUpperCase()}${firstWord.substring(1)}';
}
String toTitleCase() {
final firstWord = toCamelCase();
return '${firstWord.substring(0, 1).toUpperCase()}${firstWord.substring(1)}';
}