Notice constructor

Notice({
  1. List<String>? description,
  2. List<Link>? links,
  3. String? title,
  4. String? type,
})

Implementation

Notice({
  this.description,
  this.links,
  this.title,
  this.type,
});