BreadCrumb constructor Null safety

BreadCrumb(
  1. {int? id,
  2. String? title,
  3. int? resultsCount,
  4. List<BreadCrumb>? children,
  5. String? hexaCode}
)

Implementation

BreadCrumb({
  this.id,
  this.title,
  this.resultsCount,
  this.children,
  this.hexaCode,
});