decoder property
Returns a TriG decoder instance
Creates a new decoder that can parse TriG syntax into an RDF dataset. The decoder will be initialized with this codec's namespace mappings and decoder options.
Returns:
- A TriGDecoder configured with this codec's settings
Implementation
@override
RdfDatasetDecoder get decoder => TriGDecoder(
options: _decoderOptions,
namespaceMappings: _namespaceMappings,
iriTermFactory: _iriTermFactory);