SideBarItem constructor

SideBarItem({
  1. String? title,
  2. bool dot = false,
  3. String? info,
  4. bool disabled = false,
  5. dynamic onClick(
    1. int val
    )?,
  6. List? children,
  7. Widget? content,
})

Implementation

SideBarItem(
    {this.title,
    this.dot: false,
    this.info,
    this.disabled: false,
    this.onClick,
    this.children,
    this.content});