String stPascal(String identifier) { if (identifier.isEmpty) return identifier; return identifier[0].toUpperCase() + identifier.substring(1); }