intTryParse property

bool intTryParse

Implementation

bool get intTryParse {
  if (this == null || this!.isEmpty) return false;
  if (int.tryParse(this!) == null) return false;
  return true;
}