Tuple2<T0, T1> constructor

const Tuple2<T0, T1>(
  1. T0 item0,
  2. T1 item1
)

Creates a tuple of length 2.

Implementation

const Tuple2(
  this.item0,
  this.item1,
);