AnthropicFile constructor

const AnthropicFile({
  1. required String id,
  2. required String filename,
  3. required String mimeType,
  4. required int sizeBytes,
  5. required DateTime createdAt,
  6. required bool downloadable,
  7. String type = 'file',
})

Implementation

const AnthropicFile({
  required this.id,
  required this.filename,
  required this.mimeType,
  required this.sizeBytes,
  required this.createdAt,
  required this.downloadable,
  this.type = 'file',
});