inCaps property

String get inCaps

Implementation

String get inCaps =>
    this == "" ? "" : '${this[0].toUpperCase()}${substring(1)}';