CircularButton constructor

const CircularButton({
  1. required void onTap(),
  2. required Widget icon,
  3. required Color color,
  4. double elevation = 3,
  5. double radius = 8,
  6. double padding = 8,
  7. Key? key,
})

Implementation

const CircularButton({
  required this.onTap,
  required this.icon,
  required this.color,
  this.elevation = 3,
  this.radius = 8,
  this.padding = 8,
  super.key,
});