LeftBar constructor

const LeftBar({
  1. Key? key,
  2. bool isCondensed = false,
  3. required List<NavigationItem> menus,
  4. Widget? logoCondensed,
  5. String? logoRoute,
})

Implementation

const LeftBar(
    {Key? key,
    this.isCondensed = false,
    required this.menus,
    this.logo,
    this.logoCondensed,
    this.logoRoute})
    : super(key: key);