CommentAuthor constructor

CommentAuthor({
  1. String? displayName,
  2. String? id,
  3. CommentAuthorImage? image,
  4. String? url,
})

Implementation

CommentAuthor({
  this.displayName,
  this.id,
  this.image,
  this.url,
});