Breadcrumbs constructor

Breadcrumbs({
  1. required List<BreadcrumbItem> items,
  2. String separator = '/',
  3. int gap = 1,
  4. bool interactiveLast = false,
  5. Key? key,
})

Implementation

Breadcrumbs({
  required this.items,
  this.separator = '/',
  this.gap = 1,
  this.interactiveLast = false,
  super.key,
});