toTitleCase method

String toTitleCase()

Implementation

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