Compose2<Input1, Input2, Output> constructor

const Compose2<Input1, Input2, Output>(
  1. Output _compose(
    1. Input1 input1,
    2. Input2 input2
    ),
  2. Input1 _input1,
  3. Input2 _input2
)

Instance of Compose2 given the function Output Function(Input1 input1, Input2 input2) to execute and the Input1 and Input2 to pass to the function.

Implementation

const Compose2(this._compose, this._input1, this._input2);