AwsDecorationProcessButton constructor

const AwsDecorationProcessButton({
  1. required Color color,
  2. required Color darkColor,
  3. required BorderRadius borderRadius,
  4. BoxBorder? border,
  5. List<BoxShadow>? boxShadow,
  6. List<BoxShadow>? darkBoxShadow,
  7. Gradient? gradient,
  8. TextStyle? textStyle,
})

Constructor for the process button decoration of AwsProcessButton.

Implementation

const AwsDecorationProcessButton({
  required Color color,
  required this.darkColor,
  required BorderRadius borderRadius,
  BoxBorder? border,
  List<BoxShadow>? boxShadow,
  this.darkBoxShadow,
  Gradient? gradient,
  this.textStyle,
}) : super(
        color: color,
        borderRadius: borderRadius,
        border: border,
        boxShadow: boxShadow,
        gradient: gradient,
      );