studly static method

String studly(
  1. String value
)

Converts value to StudlyCase / PascalCase.

Implementation

static String studly(String value) => value.pascalCase;