LetVariableDeclaration constructor

LetVariableDeclaration({
  1. required String name,
  2. Type? type,
  3. required ExpressionElement body,
})

Implementation

LetVariableDeclaration({
  required this.name,
  this.type,
  required this.body,
});