Link constructor

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

Implementation

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