JsonLdGraphDecoderOptions constructor
const
JsonLdGraphDecoderOptions({
- NamedGraphHandling namedGraphHandling = NamedGraphHandling.strict,
- NamedGraphLogLevel? logLevel,
- JsonLdContextDocumentProvider? contextDocumentProvider,
- String? baseUri,
- JsonValue? expandContext,
- RdfDirection? rdfDirection,
- JsonLdProcessingMode processingMode = JsonLdProcessingMode.jsonLd11,
- bool skipInvalidRdfTerms = false,
Creates a new JSON-LD decoder options object
namedGraphHandling controls what happens when named graphs are encountered.
Defaults to NamedGraphHandling.strict.
logLevel controls logging verbosity. If null, uses sensible defaults
based on the handling mode.
Implementation
const JsonLdGraphDecoderOptions({
this.namedGraphHandling = NamedGraphHandling.strict,
this.logLevel,
this.contextDocumentProvider,
this.baseUri,
this.expandContext,
this.rdfDirection,
this.processingMode = JsonLdProcessingMode.jsonLd11,
this.skipInvalidRdfTerms = false,
});