toPascalCase method

String toPascalCase()

Implementation

String toPascalCase() {
  final key = replaceFirst('?', '');
  if (kDartKeywordsAndInternalTypes.contains(key)) {
    return this;
  }
  return pascalCase;
}