strtoul method

int strtoul(
  1. String nptr, {
  2. List<String>? endptr,
  3. int radix = 10,
})

Alias for strtol.

Implementation

int strtoul(String nptr, {List<String>? endptr, int radix = 10}) => strtol(nptr, endptr: endptr, radix: radix);