asInt method

int asInt()

Implementation

int asInt() {
  try {
    return int.parse(this);
  } catch (e) {
    return 0;
  }
}