AntdCascaderOption constructor

const AntdCascaderOption({
  1. required dynamic value,
  2. dynamic parentValue,
  3. Widget? title,
  4. Widget? child,
  5. Widget? checkIcon,
  6. Widget? icon,
  7. bool disabled = false,
})

Implementation

const AntdCascaderOption({
  required this.value,
  this.parentValue,
  this.title,
  this.child,
  this.checkIcon,
  this.icon,
  this.disabled = false,
});