parseInt function

int parseInt(
  1. String? intStr
)

Implementation

int parseInt(String? intStr) {
  return int.parse(intStr!);
}