Tuple<T, R> constructor

const Tuple<T, R>(
  1. T item1,
  2. R item2
)

Constructor to initialize the tuple with the provided values.

Implementation

const Tuple(this.item1, this.item2);