pascalCase method

String pascalCase()

Implementation

String pascalCase() {
  return camelCase().capitalizeFirstLetter();
}