CircleItem constructor

const CircleItem({
  1. required double size,
  2. required Color color,
  3. TextStyle titleStyle = const TextStyle(color: Colors.black),
  4. Border? border,
  5. double? borderWidth,
  6. String? title,
  7. String? imageName,
  8. required VoidCallback onTap,
  9. Key? key,
})

Implementation

const CircleItem(
    {required this.size,
    required this.color,
    this.titleStyle = const TextStyle(color: Colors.black),
    this.border,
    this.borderWidth,
    this.title,
    this.imageName,
    required this.onTap,
    super.key});