Tuple2<T1, T2> constructor

const Tuple2<T1, T2>(
  1. T1 first,
  2. T2 second
)

Creates a new tuple value with the specified items.

Implementation

const Tuple2(this.first, this.second) : super(2);