Function3COps<T0, T1, T2, T3>
extension Function3COps<T0, T1, T2, T3> on T3 Function(T2) Function(T1) Function(T0)Provides additional functions on curried functions with 3 parameters.
Properties
uncurried extension no setter
T3 Function(T0, T1, T2) get uncurriedReturn the uncurried form of this function.
Available on Function3C<T0, T1, T2, T3>, provided by the Function3COps<T0, T1, T2, T3> extension
Implementation
dart
Function3<T0, T1, T2, T3> get uncurried => (t0, t1, t2) => this(t0)(t1)(t2);