isInteger static method

bool isInteger(
  1. String value
)

Implementation

static bool isInteger(String value){
  return int.tryParse(value) != null;
}