InkwellText constructor

const InkwellText({
  1. Key? key,
  2. required String text,
  3. required Function onHover,
  4. required VoidCallback onTap,
  5. TextStyle? style,
})

Implementation

const InkwellText(
    {Key? key,
    required this.text,
    required this.onHover,
    required this.onTap,
    this.style})
    : super(key: key);