ButtonElementStyle constructor

ButtonElementStyle({
  1. TextStyle? buttonTextStyle,
  2. Color? loadingIconTint,
  3. double? width,
  4. double? height,
  5. Color? background,
  6. Gradient? gradient,
  7. BoxBorder? border,
  8. double? borderRadius,
})

Implementation

ButtonElementStyle({
  this.buttonTextStyle,
  this.loadingIconTint,
  super.width,
  super.height,
  super.background,
  super.gradient,
  super.border,
  super.borderRadius,
});