CircularSelector constructor

const CircularSelector({
  1. Key? key,
  2. required List<Widget> children,
  3. required double childSize,
  4. required double radiusDividend,
  5. required dynamic onSelected(
    1. int index
    ),
  6. required Offset customOffset,
  7. Color circleBackgroundColor = Colors.transparent,
})

Implementation

const CircularSelector(
    {super.key,
    required this.children,
    required this.childSize,
    required this.radiusDividend,
    required this.onSelected,
    required this.customOffset,
    this.circleBackgroundColor = Colors.transparent});