UploadErrorReason enum Null safety
The reason for the upload failure.
@since v3.3.0.
Constants
- NetError → const UploadErrorReason
-
1: Network error. Check the network connection and call
`uploadLogFile`
{@link uploadLogFile} again to upload the log file.@JsonValue(1)const UploadErrorReason(1)
- ServerError → const UploadErrorReason
-
2: An error occurs in the Agora server. Try uploading the log files later.
@JsonValue(2)const UploadErrorReason(2)
- Success → const UploadErrorReason
-
0: The log file is successfully uploaded.
@JsonValue(0)const UploadErrorReason(0)
-
values
→ const List<
UploadErrorReason> -
A constant List of the values in this enum, in order of their declaration.
const List<
UploadErrorReason>
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. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited