parse static method

num parse(
  1. String value
)

Implementation

static num parse(String value) => int.parse(value.substring(2), radix: 16);