ASTValueFuture<T extends ASTType<V>, V> constructor

ASTValueFuture<T extends ASTType<V>, V>(
  1. ASTType type,
  2. Future<V> future
)

Implementation

ASTValueFuture(ASTType type, this.future)
    : super(type is ASTTypeFuture
          ? type as ASTTypeFuture<T, V>
          : ASTTypeFuture<T, V>(type as T));