Section constructor

Section({
  1. Page? index,
  2. required String path,
  3. List<Content> children = const [],
})

Implementation

Section({
  this.index,
  required this.path,
  this.children = const [],
});