toCamelCase method

String toCamelCase()

Implementation

String toCamelCase() {
  final toList = split('');
  if (toList[0] == toList[0].toUpperCase()) {
    toList[0] = toList[0].toLowerCase();
  }
  return toList.join();
}