InstantiateExpr constructor

InstantiateExpr(
  1. Expression classExpr,
  2. List<Expression> args, {
  3. OutputType? type,
  4. List<OutputType>? typeArguments,
  5. List<NamedExpr> namedArgs = const [],
})

Implementation

InstantiateExpr(
  this.classExpr,
  this.args, {
  OutputType? type,
  this.typeArguments,
  this.namedArgs = const [],
}) : super(type);