capitalize property

String get capitalize

Implementation

String get capitalize {
  return toUpperCase()[0] + substring(1);
}