BreadCrumbItem constructor

BreadCrumbItem({
  1. required Widget content,
  2. EdgeInsetsGeometry padding = EdgeInsets.zero,
  3. EdgeInsetsGeometry margin = EdgeInsets.zero,
  4. VoidCallback? onTap,
  5. Color color = Colors.transparent,
  6. Color disableColor = Colors.transparent,
  7. Color splashColor = Colors.transparent,
  8. Color? textColor,
  9. Color? disabledTextColor,
  10. BorderRadiusGeometry borderRadius = BorderRadius.zero,
  11. BorderSide border = BorderSide.none,
})

Implementation

BreadCrumbItem({
  required this.content,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.onTap,
  this.color = Colors.transparent,
  this.disableColor = Colors.transparent,
  this.splashColor = Colors.transparent,
  this.textColor,
  this.disabledTextColor,
  this.borderRadius = BorderRadius.zero,
  this.border = BorderSide.none,
});