toJson method
Implementation
Map<String, dynamic> toJson() {
final documentTitleFieldName = this.documentTitleFieldName;
final fieldMappings = this.fieldMappings;
return {
if (documentTitleFieldName != null)
'DocumentTitleFieldName': documentTitleFieldName,
if (fieldMappings != null) 'FieldMappings': fieldMappings,
};
}