SideBox constructor

const SideBox({
  1. required double height,
  2. bool scrollable = false,
  3. Widget? child,
})

an additional widget to show on the side bar

Implementation

const SideBox({
  required this.height,
  this.scrollable = false,
  this.child,
});