toPascalCase method
Converts the string to PascalCase.
Implementation
String toPascalCase() =>
_extractLowercaseComponents().map((e) => e.capitalize()).join();
Converts the string to PascalCase.
String toPascalCase() =>
_extractLowercaseComponents().map((e) => e.capitalize()).join();