copy method

Implementation

InAppDocumentSnapshot copy({
  String? id,
  InAppDocument? doc,
}) {
  return InAppDocumentSnapshot(id ?? this.id, doc ?? _doc);
}