camel static method

String camel(
  1. String value
)

Converts value to camelCase.

Implementation

static String camel(String value) => value.camelCase;