ValueBuilder<T> constructor

ValueBuilder<T>()

Listens to all otherBuilders as part of this builder.

Implementation

ValueBuilder() {
	for (final builder in otherBuilders) {
		builder.addListener(notifyListeners);
	}
}