DriveReplyList constructor

DriveReplyList({
  1. String? category,
  2. List<DriveReply> replies = const <DriveReply>[],
  3. String? nextCursor,
})

Implementation

DriveReplyList({
  this.category,
  this.replies = const <DriveReply>[],
  this.nextCursor,
});