LinkButton constructor

const LinkButton({
  1. Key? key,
  2. required String text,
  3. double fontSize = 12,
  4. Color textColor = const Color(0xffADADAD),
  5. required VoidCallback? onPressed,
  6. EdgeInsetsGeometry? padding,
})

Implementation

const LinkButton(
    {Key? key,
    required this.text,
    this.fontSize = 12,
    this.textColor = const Color(0xffADADAD),
    required this.onPressed,
    this.padding})
    : super(key: key);