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

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

Constructs a sequence with 9 typed values.

Implementation

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