Chain.builder constructor
A Chain that consists of it's builder function and length.
Will execute the builder's Steps, if the context won't pop() or close().
Implementation
factory Chain.builder(Step builder(int index), {required final int length}) {
return Chain._internal(build: builder, length: length);
}