copyWith method
Implementation
JsonLdEncoderOptions copyWith({
Map<String, String>? customPrefixes,
bool? generateMissingPrefixes,
bool? includeBaseDeclaration,
}) =>
JsonLdEncoderOptions(
customPrefixes: customPrefixes ?? this.customPrefixes,
generateMissingPrefixes:
generateMissingPrefixes ?? this.generateMissingPrefixes,
includeBaseDeclaration:
includeBaseDeclaration ?? this.includeBaseDeclaration,
);