SectionWidget<T> constructor

const SectionWidget<T>({
  1. Key? key,
  2. required Section<T> section,
  3. int depth = 0,
  4. required bool isLastSubSection,
})

Implementation

const SectionWidget({
  super.key,
  required this.section,
  this.depth = 0,
  required this.isLastSubSection,
});