@ng-doc/builder / ClassBuilderDone Generic types:TResult Represents a done state in the builder process. This class is used when the builder has finished and the result is available. @template T The type of the result.Constructor Creates a new instance of the BuilderDone class.Presentationconstructor( readonly tag: string, readonly result: TResult, readonly fromCache: boolean = false, readonly afterEmit?: (() => void) | undefined ): BuilderDone<TResult>; ParametersNameTypeDescriptionr tagstringr resultTResultThe result of the builder process.r fromCachebooleanWhether the result was restored from the cache.r afterEmit(() => void) | undefinedA function to execute after the result has been emitted.Properties NameTypeDescriptionstate r"done"