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