parseInt method

int parseInt(
  1. dynamic str
)

Implementation

int parseInt(str) {
  return int.tryParse(str) ?? 0;
}