Convert string to PascalCase
static String toPascalCase(String input) { return input.split(RegExp(r'[_\-\s]+')).map(_capitalize).join(''); }