updateFile method
Implementation
bool updateFile(String id, String newContent) {
final AffogatoVFSEntity? file = accessEntity(id, isDir: false);
if (file != null) {
file.document!.contentVersions.add(newContent);
return true;
}
return false;
}