strlen method

int strlen(
  1. String str
)

Computes the length of the string str.

Implementation

int strlen(String str) => str.length;