copyWith method

GetFileDownloadedPrefixSize copyWith({
  1. int? fileId,
  2. int? offset,
})

Implementation

GetFileDownloadedPrefixSize copyWith({
  int? fileId,
  int? offset,
}) =>
    GetFileDownloadedPrefixSize(
      fileId: fileId ?? this.fileId,
      offset: offset ?? this.offset,
    );