XfdnButton constructor

const XfdnButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback? onPressed,
  4. double? width,
  5. Widget? icon,
  6. Color? backgroundColor,
  7. double? height,
})

Implementation

const XfdnButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.width,
  this.icon,
  this.backgroundColor,
  this.height,
});