12345678910111213141516171819 |
- class IdCardInfoModel {
- String idCardName;
- String idCardGender;
- String idCardNation;
- String idCardBirthDate;
- String idCardAddress;
- String idCardNumber;
- String localCardImagePath;
- IdCardInfoModel({
- this.idCardName = '',
- this.idCardGender = '',
- this.idCardNation = '',
- this.idCardBirthDate = '',
- this.idCardAddress = '',
- this.idCardNumber = '',
- this.localCardImagePath = '',
- });
- }
|