models.dart 426 B

12345678910111213141516171819
  1. class IdCardInfoModel {
  2. String idCardName;
  3. String idCardGender;
  4. String idCardNation;
  5. String idCardBirthDate;
  6. String idCardAddress;
  7. String idCardNumber;
  8. String localCardImagePath;
  9. IdCardInfoModel({
  10. this.idCardName = '',
  11. this.idCardGender = '',
  12. this.idCardNation = '',
  13. this.idCardBirthDate = '',
  14. this.idCardAddress = '',
  15. this.idCardNumber = '',
  16. this.localCardImagePath = '',
  17. });
  18. }