FastUrlLink constructor

const FastUrlLink({
  1. Key? key,
  2. required UrlLinkCallback onTap,
  3. required String text,
  4. required String url,
  5. Color? color,
})

Implementation

const FastUrlLink({
  Key? key,
  required this.onTap,
  required this.text,
  required this.url,
  this.color,
}) : super(key: key);