UrlBookmark constructor

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

Construct a new UrlBookmark instance.

Implementation

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