forEachLowerFirst property

String forEachLowerFirst

Implementation

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