forEachUpperLowerFirstUpper property

String forEachUpperLowerFirstUpper

Implementation

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