UrlBookmark constructor

const UrlBookmark({
  1. required String url,
  2. String? title,
})

Construct a new UrlBookmark instance.

Implementation

const UrlBookmark({required this.url, this.title});