FlatTree constructor

const FlatTree({
  1. Key? key,
  2. required List<BuildFunction> children,
  3. bool passContext = false,
  4. Widget? child,
})

Implementation

const FlatTree({
  Key? key,
  required this.children,
  this.passContext = false,
  this.child,
}) : super(key: key);