FindCommentIdsResponse constructor

FindCommentIdsResponse({
  1. int? count,
  2. List<String>? ids,
  3. ResponseError? error,
})

Builds a FindCommentIdsResponse

total: The total number of comment ids returned ids: The list of ids error: An error if there was error while fetching the comment ids

Implementation

FindCommentIdsResponse({int? count, this.ids, super.error})
    : total = count ?? ids?.length ?? 0;