LetDeclaration constructor
const
LetDeclaration(
- Token keyword,
- Token identifier,
- Token? parameter,
- Token equals,
- Expression body,
Implementation
const LetDeclaration(
this.keyword,
this.identifier,
this.parameter,
this.equals,
this.body,
);