FileSystemSize class
The latest known metered size (in bytes) of data stored in the file system,
in its Value
field, and the time at which that size was
determined in its Timestamp
field. The value doesn't represent
the size of a consistent snapshot of the file system, but it is eventually
consistent when there are no writes to the file system. That is, the value
represents the actual size only if the file system is not modified for a
period longer than a couple of hours. Otherwise, the value is not
necessarily the exact size the file system was at any instant in time.
Constructors
- FileSystemSize({required int value, DateTime? timestamp, int? valueInIA, int? valueInStandard})
-
FileSystemSize.fromJson(Map<
String, dynamic> json) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- timestamp → DateTime?
-
The time at which the size of data, returned in the
Value
field, was determined. The value is the integer number of seconds since 1970-01-01T00:00:00Z.final - value → int
-
The latest known metered size (in bytes) of data stored in the file system.
final
- valueInIA → int?
-
The latest known metered size (in bytes) of data stored in the Infrequent
Access storage class.
final
- valueInStandard → int?
-
The latest known metered size (in bytes) of data stored in the Standard
storage class.
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