toCamelCase abstract method

String toCamelCase(
  1. String input
)

Here's a Dart function to convert a string like API_KEY (SCREAMING_SNAKE_CASE) into apiKey (camelCase

Implementation

String toCamelCase(String input);