FastLink constructor
const
FastLink({
- Key? key,
- required String text,
- required VoidCallback onTap,
- TextAlign textAlign = TextAlign.left,
- Color? color,
Implementation
const FastLink({
Key? key,
required this.text,
required this.onTap,
this.textAlign = TextAlign.left,
this.color,
}) : super(key: key);