Tuple8<T1, T2, T3, T4, T5, T6, T7, T8> constructor

const Tuple8<T1, T2, T3, T4, T5, T6, T7, T8>(
  1. T1 first,
  2. T2 second,
  3. T3 third,
  4. T4 fourth,
  5. T5 fifth,
  6. T6 sixth,
  7. T7 seventh,
  8. T8 eighth,
)

Const constructor.

Implementation

const Tuple8(this.first, this.second, this.third, this.fourth, this.fifth,
    this.sixth, this.seventh, this.eighth);