Breadcrumb constructor

const Breadcrumb({
  1. Key? key,
  2. Widget? trailing,
  3. Widget? leading,
  4. BreadcrumbThemeData? theme,
  5. required BreadcrumbController controller,
})

Creates a Breadcrumb.

Implementation

const Breadcrumb({
  super.key,
  this.trailing,
  this.leading,
  this.theme,
  required this.controller,
});