FastLink constructor

const FastLink({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onTap,
  4. TextAlign textAlign = TextAlign.left,
  5. Color? color,
})

Implementation

const FastLink({
  Key? key,
  required this.text,
  required this.onTap,
  this.textAlign = TextAlign.left,
  this.color,
}) : super(key: key);