AntdSelectorOption constructor

const AntdSelectorOption({
  1. Key? key,
  2. AntdSelectorOptionStyle? style,
  3. AntdStyleBuilder<AntdSelectorOptionStyle, AntdSelectorOption>? styleBuilder,
  4. Widget? description,
  5. bool disabled = false,
  6. bool check = false,
  7. required Widget label,
  8. String? value,
  9. ValueChanged<bool>? onChange,
  10. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
})

Implementation

const AntdSelectorOption(
    {super.key,
    super.style,
    super.styleBuilder,
    this.description,
    this.disabled = false,
    this.check = false,
    required this.label,
    this.value,
    this.onChange,
    this.hapticFeedback = AntdHapticFeedback.light});