InspectionSummary constructor

const InspectionSummary({
  1. Key? key,
  2. required dynamic imageList1,
  3. required dynamic imageList2,
  4. required dynamic imageList3,
  5. required dynamic imageList4,
  6. required dynamic imageList5,
  7. required dynamic imageList6,
  8. required dynamic imageList7,
  9. dynamic onClose,
  10. dynamic onConfirm,
})

Implementation

const InspectionSummary(
    {Key? key,
    required this.imageList1,
    required this.imageList2,
    required this.imageList3,
    required this.imageList4,
    required this.imageList5,
    required this.imageList6,
    required this.imageList7,
    this.onClose,
    this.onConfirm})
    : super(key: key);