toCamelCase function

String toCamelCase(
  1. String input
)

Converts snake_case into camelCase (e.g., "meal_plan" → "mealPlan").

Implementation

String toCamelCase(String input) => input.toCamelCase();