LetBindingAst constructor

LetBindingAst(
  1. String name, [
  2. String value
])

Create a new synthetic LetBindingAst listening to name. value is an optional parameter, which indicates that the variable is bound to a the value '$implicit'.

Implementation

factory LetBindingAst(
  String name, [
  String value,
]) = _SyntheticLetBindingAst;