AuiLoadingButton constructor

const AuiLoadingButton({
  1. Key? key,
  2. ButtonRadiusType? borderRadius,
  3. Color indicatorColor = Colors.deepPurple,
  4. Color backgroundColor = Colors.black87,
  5. double itemGap = 10,
  6. double indicatorStrokeWidth = 2,
  7. TextStyle? textStyle,
  8. double buttonWidth = 500,
  9. void onPressed()?,
})

Implementation

const AuiLoadingButton({
  Key? key,
  this.borderRadius,
  this.indicatorColor = Colors.deepPurple,
  this.backgroundColor = Colors.black87,
  this.itemGap = 10,
  this.indicatorStrokeWidth = 2,
  this.textStyle,
  this.buttonWidth = 500,
  this.onPressed,
}) : super(key: key);