TolyLink constructor

const TolyLink({
  1. Key? key,
  2. required String href,
  3. LineType? lineType,
  4. required String text,
  5. TextStyle? style,
  6. Color? hoverColor,
  7. required ValueChanged<String>? onTap,
})

Implementation

const TolyLink({
  super.key,
  required this.href,
  this.lineType,
  required this.text,
  this.style,
  this.hoverColor,
  required this.onTap,
});