CircularButtons constructor

const CircularButtons({
  1. Key? key,
  2. required IconData icon,
  3. required Function onTap,
  4. required Color foregroundColor,
  5. required Color backgroundColor,
})

Implementation

const CircularButtons({
  super.key,
  required this.icon,
  required this.onTap,
  required this.foregroundColor,
  required this.backgroundColor,
});