forEachUpperFirst property

String forEachUpperFirst

Implementation

String get forEachUpperFirst =>
    this.split(" ").map((e) => e[0].toUpperCase() + e.substring(1)).join(" ");