firstInCaps property

String get firstInCaps

CAPS for first character

Implementation

String get firstInCaps => '${this[0].toUpperCase()}${this.substring(1)}';