PgrComplaintModel constructor

const PgrComplaintModel({
  1. required PgrServiceModel service,
  2. PgrWorkflowModel? workflow,
  3. bool? isDeleted = false,
  4. AuditDetails? auditDetails,
})

Implementation

const PgrComplaintModel({
  required this.service,
  this.workflow,
  super.isDeleted = false,
  super.auditDetails,
}) : super();