Sidebar constructor

Sidebar({
  1. int? sidebarId,
  2. String? item1,
  3. String? item2,
  4. String? item3,
  5. String? item4,
  6. String? item5,
  7. String? item6,
  8. String? item7,
  9. String? item8,
})

Implementation

Sidebar(
    {this.sidebarId,
    this.item1,
    this.item2,
    this.item3,
    this.item4,
    this.item5,
    this.item6,
    this.item7,
    this.item8});