uncapitalizeRestUnchanged method

String uncapitalizeRestUnchanged()

Uncapitalize the first character of the string and leaves the rest as is. In a future release will be called only uncapitalize

Implementation

String uncapitalizeRestUnchanged() => [
      if (isNotEmpty) this[0].toLowerCase(),
      if (length > 1) substring(1, length)
    ].join();