BucketContents constructor

BucketContents({
  1. required String name,
  2. String? encodingType,
  3. String? prefix,
  4. String? marker,
  5. required int maxKeys,
  6. required bool isTruncated,
  7. String? nextMarker,
  8. required List<Content?> contentsList,
  9. required List<CommonPrefixes?> commonPrefixesList,
  10. String? delimiter,
})

Implementation

BucketContents({
  required this.name,
  this.encodingType,
  this.prefix,
  this.marker,
  required this.maxKeys,
  required this.isTruncated,
  this.nextMarker,
  required this.contentsList,
  required this.commonPrefixesList,
  this.delimiter,
});