join3<T1, T2, T3> method

Future<Tuple4<T, T1, T2, T3>> join3<T1, T2, T3>(
  1. Future<T1> other1,
  2. Future<T2> other2,
  3. Future<T3> other3
)

Implementation

Future<Tuple4<T, T1, T2, T3>> join3<T1, T2, T3>(
  Future<T1> other1,
  Future<T2> other2,
  Future<T3> other3,
) {
  return Future.wait([this, other1, other2, other3])
      .then((value) => Tuple4.fromList(value));
}