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