startsWithLowerCase method

bool startsWithLowerCase()

Returns true if the String starts with a lower case character.

Returns false if the String is empty.

Example:

    print("camelCase".startsWithLowerCase());
    => true

    print("".startsWithLowerCase());
    => false

Implementation

bool startsWithLowerCase() => Style.startsWithLowerCase(this);