capitalize method

String capitalize()

Capitalizes the first letter of the string

Implementation

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