forEachFirst property

String forEachFirst

Implementation

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