Link constructor

Link({
  1. String? thumbnailUrl,
  2. String? title,
  3. String? url,
})

Implementation

Link({
  this.thumbnailUrl,
  this.title,
  this.url,
});