ArcaneLink constructor

const ArcaneLink({
  1. required String href,
  2. required Component child,
  3. ArcaneStyleData? styles,
  4. String? classes,
  5. String? id,
  6. String? target,
  7. String? rel,
  8. Map<String, void Function(dynamic)>? events,
  9. Key? key,
})

Implementation

const ArcaneLink({
  required this.href,
  required this.child,
  this.styles,
  this.classes,
  this.id,
  this.target,
  this.rel,
  this.events,
  super.key,
});