DriveComment constructor

DriveComment({
  1. String? position,
  2. DriveUser? creator,
  3. String? description,
  4. DateTime? createdTime,
  5. bool? deleted,
  6. String? htmlDescription,
  7. List<DriveReply>? replies,
  8. String? id,
  9. String? category,
  10. DateTime? editedTime,
  11. QuotedContent? quotedComment,
  12. bool? resolved,
})

Implementation

DriveComment({
  this.position,
  this.creator,
  this.description,
  this.createdTime,
  this.deleted,
  this.htmlDescription,
  this.replies,
  this.id,
  this.category,
  this.editedTime,
  this.quotedComment,
  this.resolved,
});