TextLink constructor
const
TextLink({
- Key? key,
- required String label,
- VoidCallback? onTap,
- EdgeInsets padding = EdgeInsets.zero,
- TextAlign textAlign = TextAlign.left,
- TextStyle? style,
Implementation
const TextLink({
super.key,
required this.label,
this.onTap,
this.padding = EdgeInsets.zero,
this.textAlign = TextAlign.left,
this.style,
});