copyWith method

ReadFilePart copyWith({
  1. int? fileId,
  2. int? offset,
  3. int? count,
})

Implementation

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