upperCaseFirstChar method

String upperCaseFirstChar()

Implementation

String upperCaseFirstChar() {
  return '${this[0].toUpperCase()}${substring(1).toLowerCase()}';
}