capitalize property

String capitalize

Implementation

String get capitalize {
  return "${this[0].toUpperCase()}${substring(1)}";
}