NiceCascadeOption<T> constructor

const NiceCascadeOption<T>({
  1. required T value,
  2. required String label,
  3. List<NiceCascadeOption<T>>? children,
})

Implementation

const NiceCascadeOption({
  required this.value,
  required this.label,
  this.children,
});