LinkButton constructor
const
LinkButton({
- Key? key,
- required String text,
- double fontSize = 12,
- Color textColor = const Color(0xffADADAD),
- required VoidCallback? onPressed,
- 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);