TextLinkLine constructor

const TextLinkLine({
  1. Key? key,
  2. required dynamic text,
  3. required dynamic link,
  4. required dynamic onTap(),
})

Implementation

const TextLinkLine({
  Key? key,
  required this.text,
  required this.link,
  required this.onTap,
}) : super(key: key);