withOptions method

  1. @override
RdfGraphDecoder withOptions(
  1. RdfGraphDecoderOptions options
)
override

Creates a new instance with the specified options

Returns a new decoder with the given options while maintaining the original registry association.

The options parameter contains the decoder options to apply.

Returns a new AutoDetectingGraphDecoder with the specified options.

Implementation

@override
RdfGraphDecoder withOptions(RdfGraphDecoderOptions options) =>
    AutoDetectingGraphDecoder(_registry, options: options);