CircleMinusButton constructor

const CircleMinusButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. double radius = 25.0,
  4. Color iconColor = Colors.white,
  5. Color? backgroundColor,
  6. double padding = 5.0,
  7. bool isEnabled = true,
})

Implementation

const CircleMinusButton({
  super.key,
  this.onPressed,
  this.radius = 25.0,
  this.iconColor = Colors.white,
  this.backgroundColor,
  this.padding = 5.0,
  this.isEnabled = true,
});