XfdnLinkButton constructor

const XfdnLinkButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback? onPressed,
  4. Color textColor = const Color(0xFF0074DA),
  5. double fontSize = 13,
  6. bool selected = false,
})

Implementation

const XfdnLinkButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.textColor = const Color(0xFF0074DA),
  this.fontSize = 13,
  this.selected = false,
});