Link constructor

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

Implementation

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