Tuple2<T0, T1> constructor

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

Implementation

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