patchNoteAttachment static method
Implementation
static Future<Attachment?> patchNoteAttachment(
String idAttachment, String title, String content) async {
File? file = await FileService.createMdFile(title, content);
if (file == null) return null;
return await patchAttachment(idAttachment, title, file, isNote: true);
}