Tuple3<T0, T1, T2> constructor

Tuple3<T0, T1, T2>(
  1. T0 item0,
  2. T1 item1,
  3. T2 item2
)

Implementation

Tuple3(
  this.item0,
  this.item1,
  this.item2,
);