ActionButton constructor

ActionButton({
  1. double? width,
  2. double? height,
  3. Color? backgroundColor,
  4. EdgeInsetsGeometry? padding,
  5. Decoration? decoration,
  6. GestureTapCallback? onTap,
  7. bool disabled = false,
  8. String? text,
  9. TextStyle? textStyle,
  10. ShapeBorder? customBorder,
  11. EdgeInsetsGeometry? innerPadding,
  12. Widget? child,
  13. AlignmentGeometry alignment = Alignment.center,
})

Implementation

ActionButton({
  this.width,
  this.height,
  this.backgroundColor,
  this.padding,
  this.decoration,
  this.onTap,
  this.disabled = false,
  this.text,
  this.textStyle,
  this.customBorder,
  this.innerPadding,
  this.child,
  this.alignment = Alignment.center,
});