LinkDescription constructor

const LinkDescription({
  1. required String href,
  2. required String rel,
  3. required String method,
  4. String? encType,
})

Implementation

const LinkDescription({
  required this.href,
  required this.rel,
  required this.method,
  this.encType,
});