GetTagsResponse constructor

GetTagsResponse({
  1. required int returnSize,
  2. required List<String> tags,
  3. required int totalSize,
  4. String? nextPageToken,
})

Implementation

GetTagsResponse({
  required this.returnSize,
  required this.tags,
  required this.totalSize,
  this.nextPageToken,
});