WriteGeneratedFilePart constructor

const WriteGeneratedFilePart({
  1. required int generationId,
  2. required int offset,
  3. required String data,
})

Writes a part of a generated file. 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 write to the destination file

Implementation

const WriteGeneratedFilePart({
  required this.generationId,
  required this.offset,
  required this.data,
});