BreadcrumbNavigation constructor

const BreadcrumbNavigation({
  1. Key? key,
  2. BreadcrumbService? breadcrumbService,
  3. TextStyle? textStyle,
  4. TextStyle? activeTextStyle,
  5. Color? separatorColor,
  6. IconData separatorIcon = Icons.chevron_right,
  7. double spacing = 8.0,
  8. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0),
})

Implementation

const BreadcrumbNavigation({
  super.key,
  this.breadcrumbService,
  this.textStyle,
  this.activeTextStyle,
  this.separatorColor,
  this.separatorIcon = Icons.chevron_right,
  this.spacing = 8.0,
  this.padding = const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0),
});