NGDependentValue2<T, V1, V2> constructor

NGDependentValue2<T, V1, V2>(
  1. NGValue<V1> _dependency1,
  2. NGValue<V2> _dependency2,
  3. NGDependencyMapper2<T, V1, V2> _mapper
)

Implementation

NGDependentValue2(this._dependency1, this._dependency2, this._mapper)
    : super(_mapper(_dependency1.value, _dependency2.value),
          [_dependency1, _dependency2]);