BreadcrumbModel constructor

BreadcrumbModel({
  1. Model? parent,
  2. String? id,
  3. dynamic height,
  4. dynamic color,
  5. dynamic backgroundcolor,
  6. dynamic opacity,
  7. dynamic width,
})

Implementation

BreadcrumbModel({
  Model? parent,
  String? id,
  dynamic height,
  dynamic color,
  dynamic backgroundcolor,
  dynamic opacity,
  dynamic width,
}) : super(parent, id) {
  // constraints
  if (height != null) this.height = height;
  if (width != null) this.width = width;

  this.color = color;
  this.backgroundcolor = backgroundcolor;
  this.opacity = opacity;
}