SideBarItem constructor

const SideBarItem(
  1. ListItemModel toolbarItem, {
  2. Key? key,
  3. required double height,
  4. required double scrollScale,
  5. bool isLongPressed = false,
  6. double gutter = 10,
  7. double? toolbarWidth,
  8. double? itemsOffset,
})

Implementation

const SideBarItem(
  this.toolbarItem, {
  Key? key,
  required this.height,
  required this.scrollScale,
  this.isLongPressed = false,
  this.gutter = 10,
  this.toolbarWidth,
  this.itemsOffset,
}) : super(key: key);