Document.fromJson constructor
Document.fromJson(
- dynamic json
Implementation
Document.fromJson(dynamic json) {
_usersDocumentID = json['users_document_ID'];
_type = json['type'];
_masterUserId = json['master_user_id'];
_documentNumber = json['document_number'];
_documentTypeID = json['document_type_ID'];
_documentType = json['document_type'];
_documentPhotoFront = json['document_photo_front'];
_documentPhotoFrontFull = json['document_photo_front_full'];
_documentPhotoFrontName = json['document_photo_front_name'];
_documentPhotoBack = json['document_photo_back'];
_documentPhotoBackFull = json['document_photo_back_full'];
_documentPhotoBackName = json['document_photo_back_name'];
}