SingleSelectedItem constructor

const SingleSelectedItem({
  1. required String label,
  2. TextStyle? style,
  3. Key? key,
})

Implementation

const SingleSelectedItem({
  required this.label,
  this.style,
  Key? key,
}) : super(key: key);