CircleButton constructor
const
CircleButton({
- Key? key,
- required Icon icon,
- EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
- Color? color,
- void onPressed()?,
- Color? splashColor,
Implementation
const CircleButton({
Key? key,
required this.icon,
this.padding = const EdgeInsets.all(8.0),
this.color,
this.onPressed,
this.splashColor,
}) : super(key: key);