firstLowerCase property

String get firstLowerCase

首字母小写

Implementation

String get firstLowerCase {
  return substring(0, 1).toLowerCase() + substring(1);
}