Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. void _submitForm() {
  2. FormState form = _formKey.currentState;
  3.  
  4. if(!form.validate()){
  5. print("Data Cant be empty");
  6. else {
  7. print(_nama);
  8. print(_email);
  9. print(_telephone);
  10. print(dateOfBirth);
  11. print(_selectedReligion);
  12.  
  13. }
  14.  
  15.  
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement