future property

Future future

Implementation

Future<dynamic> get future async {
  if (_future == null) {
    await pushedCompleter.future; // just await future pushed indeed, then return the actually not null _future
  }
  return _future;
}