FilesUploadResult class

File upload result

Constructors

FilesUploadResult()
Constructor
FilesUploadResult.fromJson(Map<String, dynamic> json)
Creates a FilesUploadResult instance from a JSON representation.

Properties

errors List<Error>?
List of errors.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
uploaded List<String>?
List of uploaded file names
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a JSON representation of FilesUploadResult.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

listFromJson(List json) List<FilesUploadResult>
Converts a list of JSON objects to a list of FilesUploadResult instances.