BreadcrumbModel constructor
BreadcrumbModel({})
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;
}