convert method

int convert(
  1. String src
)
override

Converts input and returns the result of the conversion.

Implementation

int convert(String src)
  => int.parse(src, radix: this.radix);