XTextButton constructor

const XTextButton({
  1. Key? key,
  2. required dynamic onPressed(),
  3. required String text,
  4. double height = 30,
  5. double width = 80,
})

Implementation

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