Added share bookmark to form

This commit is contained in:
Juan Gilsanz Polo
2024-04-14 20:44:34 +02:00
parent d42b960381
commit ca74c53ad2
7 changed files with 54 additions and 7 deletions

View File

@@ -16,6 +16,7 @@ class BookmarkFormModel {
List<String> tags;
final TextEditingController notesController;
int? editBookmarkId;
bool share;
BookmarkFormModel({
required this.urlController,
@@ -30,5 +31,6 @@ class BookmarkFormModel {
required this.tags,
required this.notesController,
this.editBookmarkId,
this.share = false,
});
}