ZetaNavigationRail constructor

const ZetaNavigationRail({
  1. Key? key,
  2. bool? rounded,
  3. required List<ZetaNavigationRailItem> items,
  4. int? selectedIndex,
  5. void onSelect(
    1. int
    )?,
  6. EdgeInsets? margin,
  7. EdgeInsets? itemSpacing,
  8. EdgeInsets? itemPadding,
  9. bool? wordWrap,
  10. String? semanticLabel,
})

Constructor for ZetaNavigationRail.

Implementation

const ZetaNavigationRail({
  super.key,
  super.rounded,
  required this.items,
  this.selectedIndex,
  this.onSelect,
  this.margin,
  this.itemSpacing,
  this.itemPadding,
  this.wordWrap,
  this.semanticLabel,
});