Link constructor

Link({
  1. required LinkRelationType rel,
  2. required String type,
  3. required String href,
})

Creates a new Link

Implementation

Link({
  required this.rel,
  required this.type,
  required this.href,
});