Approval constructor

Approval({
  1. String? approvalId,
  2. String? completeTime,
  3. String? createTime,
  4. String? dueTime,
  5. User? initiator,
  6. String? kind,
  7. String? modifyTime,
  8. List<ReviewerResponse>? reviewerResponses,
  9. String? status,
  10. String? targetFileId,
})

Implementation

Approval({
  this.approvalId,
  this.completeTime,
  this.createTime,
  this.dueTime,
  this.initiator,
  this.kind,
  this.modifyTime,
  this.reviewerResponses,
  this.status,
  this.targetFileId,
});