LoadFailureReason enum

Reason for a failed load operation.

Inheritance
Available extensions

Values

notFound → const LoadFailureReason

No save data was found.

invalidJson → const LoadFailureReason

Data could not be decoded by the codec.

invalidEnvelope → const LoadFailureReason

Envelope metadata failed validation.

invalidPayload → const LoadFailureReason

Payload is not JSON-safe or fails validation.

checksumMismatch → const LoadFailureReason

Payload checksum did not match.

migrationMissing → const LoadFailureReason

Required migration step is missing.

migrationFailed → const LoadFailureReason

Migration failed with an unexpected error.

futureSchema → const LoadFailureReason

Save schema is newer than the latest known version.

readFailed → const LoadFailureReason

Reading from the store failed.

writeFailed → const LoadFailureReason

Writing to the store failed.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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

Constants

values → const List<LoadFailureReason>
A constant List of the values in this enum, in order of their declaration.