isInt function

bool isInt(
  1. String str
)

Check if a string is an integer.

Implementation

bool isInt(String str) => _isInt(str);