ProductQueryPage constructor Null safety

const ProductQueryPage(
  1. {required dynamic productListSupplier,
  2. required String heroTag,
  3. required dynamic mainColor,
  4. required String name,
  5. int? lastUpdate}
)

Implementation

const ProductQueryPage({
  required this.productListSupplier,
  required this.heroTag,
  required this.mainColor,
  required this.name,
  this.lastUpdate,
});