HyperlinkButton constructor

const HyperlinkButton(
  1. String text, {
  2. Key? key,
  3. required FunctionStringCallback? onPressed,
  4. EdgeInsets? padding,
  5. String? tooltip,
  6. HyperlinkThemeData? theme,
})

Implementation

const HyperlinkButton(
  this.text, {
  super.key,
  required this.onPressed,
  this.padding,
  this.tooltip,
  this.theme,
});