stringToInt function

int stringToInt(
  1. String number
)

Implementation

int stringToInt(String number) => int.parse(number);