CustomClickableText constructor

const CustomClickableText({
  1. Key? key,
  2. required String text,
  3. required VoidCallback voidCallback,
  4. Color? fontColor = CustomLightTheme.primaryColor,
  5. double? fontSize = 14,
  6. FontWeight? fontWeight = FontWeight.w600,
})

Implementation

const CustomClickableText(
    {super.key,
    required this.text,
    required this.voidCallback,
    this.fontColor = CustomLightTheme.primaryColor,
    this.fontSize = 14,
    this.fontWeight = FontWeight.w600});