ReadFilePart class

Reads a part of a file from the TDLib file cache and returns read bytes. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct read from the file.

Returns FilePart.

Inheritance
Available Extensions

Constructors

ReadFilePart({required int file_id, required int offset, required int count, int? extra, int? clientId})
Reads a part of a file from the TDLib file cache and returns read bytes. This method is intended to be used only if the application has no direct access to TDLib's file system, because it is usually slower than a direct read from the file

Properties

clientId int?
TDLib client instance identifier, for which the response was received.
read / writeoverride
count int
Number of bytes to read. An error will be returned if there are not enough bytes available in the file from the specified position. Pass 0 to read all available data from the specified position.
read / write
extra int?
Request identifier. Must be non-zero.
read / writeoverride
file_id int
Identifier of the file. The file must be located in the TDLib file cache.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
offset int
The offset from which to read the file.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

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) ReadFilePart?
Construct from Map.
override

Constants

CONSTRUCTOR → const String
@type
"readFilePart"