toPersistenceDoc method

FilePersistDocument<T> toPersistenceDoc()

Implementation

FilePersistDocument<T> toPersistenceDoc() {
  return FilePersistDocument<T>(
    id: id,
    parent: parent,
    encrypted: isEncrypted(),
    key: getPersistenceKey(),
    data: getJson(),
  );
}