Breadcrumb constructor

const Breadcrumb({
  1. Key? key,
  2. List<Widget>? children,
  3. Widget itemBuilder(
    1. BuildContext context,
    2. int index
    )?,
  4. int? itemCount,
  5. Map? params,
  6. Widget? separator,
})

Implementation

const Breadcrumb({
  Key? key,
  this.children,
  this.itemBuilder,
  this.itemCount,
  this.params,
  this.separator,
}) : super(key: key);