capitalize property
String
get
capitalize
Capitalize first letter
Implementation
String get capitalize =>
isNullOrEmpty ? this : this[0].toUpperCase() + substring(1);
Capitalize first letter
String get capitalize =>
isNullOrEmpty ? this : this[0].toUpperCase() + substring(1);