camelCase property

String get camelCase

Implementation

String get camelCase =>
    split(" ").map((e) => e.toLowerCase().capitalize()).join();