Integer.parse constructor

Integer.parse(
  1. String value
)

Implementation

factory Integer.parse(String value) => Integer(int.parse(value));