DownloadFile class

Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates.

Returns File.

Inheritance
Available Extensions

Constructors

DownloadFile({required int file_id, required int priority, required int offset, required int limit, required bool synchronous, int? extra, int? clientId})
Downloads a file from the cloud. Download progress and completion of the download will be notified through updateFile updates

Properties

clientId int?
TDLib client instance identifier, for which the response was received.
read / writeoverride
extra int?
Request identifier. Must be non-zero.
read / writeoverride
file_id int
Identifier of the file to download.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
limit int
Number of bytes which need to be downloaded starting from the "offset" position before the download will automatically be canceled; use 0 to download without a limit.
read / write
offset int
The starting position from which the file needs to be downloaded.
read / write
priority int
Priority of the download (1-32). The higher the priority, the earlier the file will be downloaded. If the priorities of two files are equal, then the last one for which downloadFile/addFileToDownloads was called will be downloaded first.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
synchronous bool
Pass true to return response only after the file download has succeeded, has failed, has been canceled, or a new downloadFile request with different offset/limit parameters was sent; pass false to return file state immediately, just after the download has been started.
read / write

Methods

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

Operators

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

Static Methods

fromMap(Map<String, dynamic>? _map) DownloadFile?
Construct from Map.
override

Constants

CONSTRUCTOR → const String
@type
"downloadFile"