BookmarkButton constructor

const BookmarkButton(
  1. {required BrowserBookmark bookmark,
  2. dynamic onTap(
      )?,
    1. dynamic onLongPress(
        )?,
      1. Key? key}
      )

      Initialise an instance of this widget.

      Implementation

      const BookmarkButton({
        required this.bookmark,
        this.onTap,
        this.onLongPress,
        super.key,
      });