isCamelCase static method

bool isCamelCase(
  1. String s
)

Checks if string value is camelcase. 检查字符串值是否驼峰大小写。

Implementation

static bool isCamelCase(String s) =>
    s == TransformUtils.camelCase(s);