capitalize property

String capitalize

Implementation

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