Link constructor

Link({
  1. String? url,
  2. required String label,
  3. required bool active,
})

Implementation

Link({
  this.url,
  required this.label,
  required this.active,
});