XTextLink constructor

const XTextLink({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required String text,
  4. double height = 30,
})

Implementation

const XTextLink({
  super.key,
  required this.onPressed,
  required this.text,
  this.height = 30,
});