Document constructor
Document({
- String? usersDocumentID,
- String? type,
- String? masterUserId,
- String? documentNumber,
- String? documentTypeID,
- String? documentType,
- String? documentPhotoFront,
- String? documentPhotoFrontFull,
- String? documentPhotoFrontName,
- String? documentPhotoBack,
- String? documentPhotoBackFull,
- String? documentPhotoBackName,
Implementation
Document({
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;
}