zip<A, B> static method
Implementation
static Tuple2<A, B>? zip<A, B>(A? first, B? second) =>
first != null && second != null ? Tuple2(first, second) : null;
static Tuple2<A, B>? zip<A, B>(A? first, B? second) =>
first != null && second != null ? Tuple2(first, second) : null;