DocumentDetailData constructor

DocumentDetailData({
  1. String? usersDocumentID,
  2. String? type,
  3. String? masterUserId,
  4. String? documentNumber,
  5. String? documentTypeID,
  6. String? documentType,
  7. String? documentPhotoFront,
  8. String? documentPhotoFrontFull,
  9. String? documentPhotoFrontName,
  10. String? documentPhotoBack,
  11. String? documentPhotoBackFull,
  12. String? documentPhotoBackName,
})

Implementation

DocumentDetailData({
    String? usersDocumentID,
    String? type,
    String? masterUserId,
    String? documentNumber,
    String? documentTypeID,
    String? documentType,
    String? documentPhotoFront,
    String? documentPhotoFrontFull,
    String? documentPhotoFrontName,
    String? documentPhotoBack,
    String? documentPhotoBackFull,
    String? documentPhotoBackName,}){
  _usersDocumentID = usersDocumentID;
  _type = type;
  _masterUserId = masterUserId;
  _documentNumber = documentNumber;
  _documentTypeID = documentTypeID;
  _documentType = documentType;
  _documentPhotoFront = documentPhotoFront;
  _documentPhotoFrontFull = documentPhotoFrontFull;
  _documentPhotoFrontName = documentPhotoFrontName;
  _documentPhotoBack = documentPhotoBack;
  _documentPhotoBackFull = documentPhotoBackFull;
  _documentPhotoBackName = documentPhotoBackName;
}