encoder property
override
Returns the default codec's encoder
Since format detection is only relevant for decoding, this returns the encoder from the default codec, optionally configured with the stored options.
Implementation
@override
RdfGraphEncoder get encoder {
if (_encoderOptions != null) {
return _defaultCodec.encoder.withOptions(_encoderOptions);
}
return _defaultCodec.encoder;
}