Object class
An object consists of data and its descriptive metadata.
Constructors
- Object({String? eTag, String? key, DateTime? lastModified, Owner? owner, int? size, ObjectStorageClass? storageClass})
- Object.fromXml(XmlElement elem)
-
factory
Properties
- eTag → String?
-
The entity tag is a hash of the object. The ETag reflects changes only to
the contents of an object, not its metadata. The ETag may or may not be an
MD5 digest of the object data. Whether or not it is depends on how the
object was created and how it is encrypted as described below:
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- key → String?
-
The name that you assign to an object. You use the object key to retrieve
the object.
final
- lastModified → DateTime?
-
The date the Object was Last Modified
final
- owner → Owner?
-
The owner of the object
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- size → int?
-
Size in bytes of the object
final
- storageClass → ObjectStorageClass?
-
The class of storage used to store the object.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited