LinksModel constructor

LinksModel({
  1. String? url,
  2. dynamic label,
  3. bool? active,
})

Implementation

LinksModel({
  this.url,
  this.label,
  this.active,
});