XButtonElevated constructor

const XButtonElevated({
  1. required String text,
  2. required dynamic onTap(),
  3. bool enabled = true,
  4. EdgeInsets? padding,
  5. double? radius,
  6. bool rounded = false,
  7. Color? color,
  8. Key? key,
})

Implementation

const XButtonElevated({
  required this.text,
  required this.onTap,
  this.enabled = true,
  this.padding,
  this.radius,
  this.rounded = false,
  this.color,
  super.key,
});