NavigationContentList constructor

const NavigationContentList({
  1. Key? key,
  2. required List<Widget> children,
  3. int crossAxisCount = 3,
  4. double? spacing,
  5. double? runSpacing,
  6. bool reverse = false,
})

Implementation

const NavigationContentList({
  super.key,
  required this.children,
  this.crossAxisCount = 3,
  this.spacing,
  this.runSpacing,
  this.reverse = false,
});