FileListResponse constructor

const FileListResponse({
  1. required List<FileObject> data,
  2. String object = 'list',
  3. String? firstId,
  4. String? lastId,
  5. bool? hasMore,
  6. int? total,
  7. int? limit,
  8. int? offset,
})

Implementation

const FileListResponse({
  required this.data,
  this.object = 'list',
  this.firstId,
  this.lastId,
  this.hasMore,
  this.total,
  this.limit,
  this.offset,
});