Triple<A, B, C> constructor

const Triple<A, B, C>(
  1. A first,
  2. B second,
  3. C three
)

Implementation

const Triple(this.first, this.second, this.three);