firstUpperCase property
String
get
firstUpperCase
首字母大写
Implementation
String get firstUpperCase {
return substring(0, 1).toUpperCase() + substring(1);
}
首字母大写
String get firstUpperCase {
return substring(0, 1).toUpperCase() + substring(1);
}