CDKButtonIcon constructor

const CDKButtonIcon(
  1. {Key? key,
  2. VoidCallback? onPressed,
  3. IconData icon = CupertinoIcons.bell_fill,
  4. double size = 24.0,
  5. bool isCircle = false,
  6. bool isSelected = false}
)

Implementation

const CDKButtonIcon({
  Key? key,
  this.onPressed,
  this.icon = CupertinoIcons.bell_fill,
  this.size = 24.0,
  this.isCircle = false,
  this.isSelected = false,
}) : super(key: key);