CustomQuadrant constructor

const CustomQuadrant({
  1. Key? key,
  2. required bool isSelected,
  3. required String text,
  4. required dynamic callbackSelected(
    1. bool
    ),
})

Implementation

const CustomQuadrant({
  Key? key,
  required this.isSelected,
  required this.text,
  required this.callbackSelected,
}) : super(key: key);