ButtonStyle constructor

const ButtonStyle({
  1. TextStyle? textStyle,
  2. Color? iconTint,
  3. Color? iconBackground,
  4. BoxBorder? iconBorder,
  5. double? iconBorderRadius,
  6. double? iconHeight,
  7. double? iconWidth,
  8. double? width,
  9. double? height,
  10. Color? background,
  11. BoxBorder? border,
  12. double? borderRadius,
  13. Gradient? gradient,
})

Implementation

const ButtonStyle({
  this.textStyle,
  this.iconTint,
  this.iconBackground,
  this.iconBorder,
  this.iconBorderRadius,
  this.iconHeight,
  this.iconWidth,
  double? width,
  double? height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});