isStringInteger method

bool isStringInteger(
  1. String value
)

Implementation

bool isStringInteger(String value) {
  try {
    int.tryParse(value);
    return true;
  } catch (e) {
    print(e);
    return false;
  }
}