Pair<A, B> constructor

Pair<A, B>(
  1. A _a,
  2. B _b
)

Creates a Pair of two values. Both can have different types

Implementation

Pair(this._a, this._b);