Converts snake_case into camelCase (e.g., "meal_plan" → "mealPlan").
String toCamelCase(String input) => input.toCamelCase();