CascadeNode<T> constructor
const
CascadeNode<T> ({
- required String id,
- required String label,
- List<
CascadeNode< children = const [],T> > - T? value,
Creates a node for the cascade filter.
Implementation
const CascadeNode({
required this.id,
required this.label,
this.children = const [],
this.value,
});