CascaderOption constructor

CascaderOption({
  1. required String value,
  2. Widget? label,
  3. bool? disabled,
  4. List<CascaderOption>? children,
  5. bool? isLeaf,
})

Implementation

CascaderOption({
  required this.value,
  this.label,
  this.disabled,
  this.children,
  this.isLeaf,
});