copyWith method

EncodingOptions copyWith({
  1. Object? data,
})

Implementation

EncodingOptions copyWith({Object? data}) {
  return EncodingOptions(
    includeTypeId: includeTypeId,
    inheritOptions: inheritOptions,
    shallow: shallow,
    data: data ?? this.data,
  );
}