strtoull method

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

Alias for strtol.

Implementation

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