Improved add links
This commit is contained in:
@@ -11,7 +11,9 @@ class AddLinkModel {
|
||||
final TextEditingController titleController;
|
||||
final TextEditingController descriptionController;
|
||||
bool markAsUnread;
|
||||
final List<String> tags;
|
||||
final TextEditingController tagsController;
|
||||
String? tagsError;
|
||||
List<String> tags;
|
||||
final TextEditingController notesController;
|
||||
|
||||
AddLinkModel({
|
||||
@@ -22,6 +24,8 @@ class AddLinkModel {
|
||||
required this.titleController,
|
||||
required this.descriptionController,
|
||||
this.markAsUnread = false,
|
||||
required this.tagsController,
|
||||
this.tagsError,
|
||||
required this.tags,
|
||||
required this.notesController,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user