Tuple2Kind<T0, T1> constructor

const Tuple2Kind<T0, T1>(
  1. Kind<T0> kind0,
  2. Kind<T1> kind1, {
  3. String? name,
  4. String? jsonName,
})

Implementation

const Tuple2Kind(
  this.kind0,
  this.kind1, {
  super.name,
  super.jsonName,
}) : super.constructor();