Approval constructor

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

Implementation

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