Link constructor

const Link(
  1. List<Component> children, {
  2. required String to,
  3. bool replace = false,
  4. Object? extra,
  5. bool preload = true,
  6. String? classes,
  7. Styles? styles,
  8. Map<String, String>? attributes,
  9. Key? key,
})

Implementation

const Link(
  this.children, {
  required this.to,
  this.replace = false,
  this.extra,
  this.preload = true,
  this.classes,
  this.styles,
  this.attributes,
  super.key,
});