NiceBookmarkList constructor

const NiceBookmarkList({
  1. Key? key,
  2. required List<NiceBookmark> bookmarks,
  3. ValueChanged<NiceBookmark>? onBookmarkTap,
  4. ValueChanged<NiceBookmark>? onBookmarkDelete,
  5. bool showTimestamp = true,
  6. bool sortByDate = true,
})

Implementation

const NiceBookmarkList({
  super.key,
  required this.bookmarks,
  this.onBookmarkTap,
  this.onBookmarkDelete,
  this.showTimestamp = true,
  this.sortByDate = true,
});