Comment constructor

Comment({
  1. String? authorArn,
  2. List<String>? callerReactions,
  3. String? clientRequestToken,
  4. String? commentId,
  5. String? content,
  6. DateTime? creationDate,
  7. bool? deleted,
  8. String? inReplyTo,
  9. DateTime? lastModifiedDate,
  10. Map<String, int>? reactionCounts,
})

Implementation

Comment({
  this.authorArn,
  this.callerReactions,
  this.clientRequestToken,
  this.commentId,
  this.content,
  this.creationDate,
  this.deleted,
  this.inReplyTo,
  this.lastModifiedDate,
  this.reactionCounts,
});