GenTuple2Ops<A, B>
extensionGenTuple2Ops<A, B>onRecord
Properties
tupled extension no setter
Gen<Record>gettupled
Available on Record, provided by the GenTuple2Ops<A, B> extension
Implementation
dart
Gen<(A, B)> get tupled => $1
.flatMap((a) => $2.map((b) => (a, b)))
.withShrinker(Shrinker.tuple2($1.shrinker, $2.shrinker));