Converts snake_case into PascalCase (e.g., "meal_plan" → "MealPlan").
String toPascalCase(String input) => input.toPascalCase();