AnthropicFileListResponse constructor

const AnthropicFileListResponse({
  1. required List<AnthropicFile> data,
  2. String? firstId,
  3. String? lastId,
  4. required bool hasMore,
})

Implementation

const AnthropicFileListResponse({
  required this.data,
  this.firstId,
  this.lastId,
  required this.hasMore,
});