CLNavList constructor

const CLNavList({
  1. Key? key,
  2. required List<CLDestination> destinations,
  3. required String? selectedKey,
  4. required ValueChanged<CLDestination> onSelect,
  5. bool isCompact = false,
  6. String? forceExpandedKey,
  7. EdgeInsets padding = const EdgeInsets.all(Sizes.gapLg),
})

Implementation

const CLNavList({
  super.key,
  required this.destinations,
  required this.selectedKey,
  required this.onSelect,
  this.isCompact = false,
  this.forceExpandedKey,
  this.padding = const EdgeInsets.all(Sizes.gapLg),
});