RoundedFillButton constructor

const RoundedFillButton({
  1. Key? key,
  2. required double? buttonWidth,
  3. required double? buttonHeight,
  4. required Color? filledColor,
  5. required double? fillRadius,
  6. required VoidCallback? onClick,
  7. required Duration? fillingDuration,
  8. required Curve? curve,
  9. bool? showInitialShape,
  10. BoxBorder? filledBorder,
  11. Gradient? filledGradient,
  12. BoxDecoration? buttonDecoration,
  13. EdgeInsetsGeometry? buttonPadding,
  14. EdgeInsetsGeometry? buttonMargin,
  15. AlignmentGeometry? alignment,
  16. Widget? child,
})

Implementation

const RoundedFillButton({
  Key? key,
  required this.buttonWidth,
  required this.buttonHeight,
  required this.filledColor,
  required this.fillRadius,
  required this.onClick,
  required this.fillingDuration,
  required this.curve,
  this.showInitialShape,
  this.filledBorder,
  this.filledGradient,
  this.buttonDecoration,
  this.buttonPadding,
  this.buttonMargin,
  this.alignment,
  this.child,
}) : super(key: key);