copyWith method
Implementation
SetFileGenerationProgress copyWith({
int? generationId,
int? expectedSize,
int? localPrefixSize,
}) => SetFileGenerationProgress(
generationId: generationId ?? this.generationId,
expectedSize: expectedSize ?? this.expectedSize,
localPrefixSize: localPrefixSize ?? this.localPrefixSize,
);