ButtonSettings constructor

const ButtonSettings({
  1. double? width,
  2. double? height,
  3. EdgeInsetsGeometry? padding,
  4. EdgeInsetsGeometry? margin,
  5. Alignment? alignment,
  6. Color? color,
  7. Gradient? gradient,
  8. DecorationImage? image,
  9. Border? border,
  10. BorderRadius? borderRadius,
  11. BoxShape? shape,
  12. BoxShadow? shadow,
})

Implementation

const ButtonSettings({
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.alignment,
  this.color,
  this.gradient,
  this.image,
  this.border,
  this.borderRadius,
  this.shape,
  this.shadow,
});