FetchPoolFilePersistenceResult enum Null safety
Enum describing the different file persistence results.
Constructors
- FetchPoolFilePersistenceResult()
-
const
Values
- saved → const FetchPoolFilePersistenceResult
-
If the file didn't already exist in the target directory and was saved
const FetchPoolFilePersistenceResult(0)
- overwritten → const FetchPoolFilePersistenceResult
-
If the file already existed in the target directory and was overwritten
const FetchPoolFilePersistenceResult(1)
- skipped → const FetchPoolFilePersistenceResult
-
If the file already existed in the target directory and was skipped
const FetchPoolFilePersistenceResult(2)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
FetchPoolFilePersistenceResult> -
A constant List of the values in this enum, in order of their declaration.
[saved, overwritten, skipped]