Item constructor

Item({
  1. int? contentLength,
  2. String? contentType,
  3. String? eTag,
  4. DateTime? lastModified,
  5. String? name,
  6. ItemType? type,
})

Implementation

Item({
  this.contentLength,
  this.contentType,
  this.eTag,
  this.lastModified,
  this.name,
  this.type,
});