length static method

int length(
  1. String value
)

Returns the length of value.

Implementation

static int length(String value) => value.length;