MediaUploadStatus enum
Enum representing the status of media upload.
Values
- mediaNotUploaded → const MediaUploadStatus
-
Media has not been uploaded.
const MediaUploadStatus(0)
- mediaUploading → const MediaUploadStatus
-
Media is currently being uploaded.
const MediaUploadStatus(1)
- mediaUploaded → const MediaUploadStatus
-
Media has been successfully uploaded.
const MediaUploadStatus(2)
- mediaUploadedNotAvailable → const MediaUploadStatus
-
Media was uploaded but is no longer available.
const MediaUploadStatus(7)
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
- value → int
-
The integer value associated with the media upload status.
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
Constants
- isMediaNotUploaded → const int
- Status value indicating media has not been uploaded.
- isMediaUploaded → const int
- Status value indicating media has been successfully uploaded.
- isMediaUploadedNotAvailable → const int
- Status value indicating media was uploaded but is no longer available.
- isMediaUploading → const int
- Status value indicating media is currently being uploaded.
-
values
→ const List<
MediaUploadStatus> - A constant List of the values in this enum, in order of their declaration.