LinkEntry constructor

const LinkEntry({
  1. required String url,
  2. String? rel,
  3. Map<String, String> attributes = const {},
})

Implementation

const LinkEntry({
  required this.url,
  this.rel,
  this.attributes = const {},
});