AntdCascaderView constructor

const AntdCascaderView({
  1. Key? key,
  2. AntdCascaderViewStyle? style,
  3. AntdStyleBuilder<AntdCascaderViewStyle, AntdCascaderView>? styleBuilder,
  4. bool? disabled,
  5. bool? readOnly,
  6. List? value,
  7. bool? autoCollect = true,
  8. ValueChanged<List?>? onChange,
  9. bool? shouldTriggerChange = true,
  10. AntdHapticFeedback? hapticFeedback = AntdHapticFeedback.light,
  11. bool? manual,
  12. Widget placeholder = const Text("请选择"),
  13. required List<AntdCascaderOption> options,
  14. AntdTabsOnChange<AntdTab>? onTabsChange,
})

Implementation

const AntdCascaderView({
  super.key,
  super.style,
  super.styleBuilder,
  super.disabled,
  super.readOnly,
  super.value,
  super.autoCollect,
  super.onChange,
  super.shouldTriggerChange,
  super.hapticFeedback,
  super.manual,
  this.placeholder = const Text("请选择"),
  required this.options,
  this.onTabsChange,
});