FluentSidebarItem constructor

const FluentSidebarItem({
  1. required String id,
  2. required String nodeId,
  3. CaretStop? stop,
  4. required Widget widget,
  5. double estimatedHeight = 130.0,
  6. DateTime? createdAt,
  7. FluentSidebarItemCategory category = FluentSidebarItemCategory.other,
})

Implementation

const FluentSidebarItem({
  required this.id,
  required this.nodeId,
  this.stop,
  required this.widget,
  this.estimatedHeight = 130.0,
  this.createdAt,
  this.category = FluentSidebarItemCategory.other,
});