LetDeclaration constructor

const LetDeclaration(
  1. Token keyword,
  2. Token identifier,
  3. Token? parameter,
  4. Token equals,
  5. Expression body,
)

Implementation

const LetDeclaration(
  this.keyword,
  this.identifier,
  this.parameter,
  this.equals,
  this.body,
);