NiceBookmarkList constructor
const
NiceBookmarkList({
- Key? key,
- required List<
NiceBookmark> bookmarks, - ValueChanged<
NiceBookmark> ? onBookmarkTap, - ValueChanged<
NiceBookmark> ? onBookmarkDelete, - bool showTimestamp = true,
- bool sortByDate = true,
Implementation
const NiceBookmarkList({
super.key,
required this.bookmarks,
this.onBookmarkTap,
this.onBookmarkDelete,
this.showTimestamp = true,
this.sortByDate = true,
});