join method

Future<T> join()

Implementation

Future<T> join() async {
  final x = await this;

  return x.fold(identity, identity);
}