@override bool validate(value, data) { try { int.parse(value.toString()); return true; } catch (_) { return false; } }