randomCase method

String randomCase()

Implementation

String randomCase() => charMap((e) => e == " "
    ? " "
    : _r.nextBool()
        ? e.toUpperCase()
        : e.toLowerCase());