lowCamel method

String lowCamel(
  1. String s
)

Implementation

String lowCamel(String s) => s[0].toLowerCase() + s.substring(1);