startsWithLowerCase static method
Returns true if string starts with the lower case character.
Returns false if string is empty or null
Example: print(startsWithLowerCase("camelCase")); => true
print(startsWithLowerCase(""));
=> false
print(startsWithLowerCase(null));
=> false
Implementation
static bool startsWithLowerCase(String? string) =>
Style.startsWithLowerCase(string);