SeoLink constructor

const SeoLink({
  1. Key? key,
  2. required String href,
  3. required Widget child,
  4. String? anchor,
  5. VoidCallback? onTap,
  6. bool external = false,
  7. String? rel,
})

Implementation

const SeoLink({
  super.key,
  required this.href,
  required this.child,
  this.anchor,
  this.onTap,
  this.external = false,
  this.rel,
});