lcfirst static method

String lcfirst(
  1. String value
)

Lowercases the first character of value.

Implementation

static String lcfirst(String value) =>
    value.isEmpty ? value : '${value[0].toLowerCase()}${value.substring(1)}';