InteractiveText constructor

const InteractiveText({
  1. Key? key,
  2. required String text,
  3. required TextStyle textStyle,
  4. required TextStyle linkStyle,
  5. dynamic onUrlClick(
    1. String
    )?,
  6. dynamic onPhoneClick(
    1. String
    )?,
})

Implementation

const InteractiveText(
    {super.key,
    required this.text,
    required this.textStyle,
    required this.linkStyle,
    this.onUrlClick,
    this.onPhoneClick});