ReplyList constructor

ReplyList({
  1. String? kind,
  2. String? nextPageToken,
  3. List<Reply>? replies,
})

Implementation

ReplyList({
  this.kind,
  this.nextPageToken,
  this.replies,
});