forEach property

String forEach

Implementation

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