startsWithUpperCase method

bool startsWithUpperCase()

Returns true if the String starts with an upper case character.

Returns false if the String is empty.

Example:

    print("Dart".startsWithUpperCase());
    => true

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

Implementation

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