toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['users_document_ID'] = _usersDocumentID;
map['type'] = _type;
map['master_user_id'] = _masterUserId;
map['document_number'] = _documentNumber;
map['document_type_ID'] = _documentTypeID;
map['document_type'] = _documentType;
map['document_photo_front'] = _documentPhotoFront;
map['document_photo_front_name'] = _documentPhotoFrontName;
map['document_photo_back'] = _documentPhotoBack;
map['document_photo_back_name'] = _documentPhotoBackName;
return map;
}