toFirstLowercase function

  1. @useResult
String toFirstLowercase(
  1. String str
)

文字列の最初の文字を小文字にしたものを返す

Implementation

@useResult
String toFirstLowercase(String str) {
  if (str.isEmpty) {
    return '';
  }
  return str[0].toLowerCase() + str.substring(1);
}