curryLast property
Output Function(Input1, Input2, Input3) Function(Input4)
get
curryLast
Extract last parameter from this function to allow curring.
Implementation
Output Function(Input1, Input2, Input3) Function(Input4) get curryLast =>
(input4) =>
(input1, input2, input3) => this(input1, input2, input3, input4);