capitalize property

String capitalize

It capitalizes your string.

Implementation

String get capitalize => this[0].toUpperCase() + substring(1);