user_model.dart 265 B

123456789101112131415
  1. class UserModel {
  2. int id = 0;
  3. String name = '';
  4. String email = '';
  5. String password = '';
  6. String token = '';
  7. UserModel({
  8. required this.id,
  9. required this.name,
  10. required this.email,
  11. required this.password,
  12. required this.token,
  13. });
  14. }