Tuple4<T1, T2, T3, T4> constructor
const
Tuple4<T1, T2, T3, T4> (
- T1 first,
- T2 second,
- T3 third,
- T4 fourth,
Creates a new tuple value with the specified items.
Implementation
const Tuple4(this.first, this.second, this.third, this.fourth) : super(4);