copyWith method
Implementation
InternalDoc copyWith({
Rev? rev,
bool? deleted,
int? localSeq,
Map<String, dynamic>? data,
}) {
return InternalDoc(
rev: rev ?? this.rev,
deleted: deleted ?? this.deleted,
localSeq: localSeq ?? this.localSeq,
data: data ?? this.data,
);
}