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