Tuple4<T1, T2, T3, T4> constructor

const Tuple4<T1, T2, T3, T4>(
  1. T1 first,
  2. T2 second,
  3. T3 third,
  4. T4 fourth,
)

Creates a new tuple value with the specified items.

Implementation

const Tuple4(this.first, this.second, this.third, this.fourth) : super(4);