DeclaredVariablePatternImpl constructor

DeclaredVariablePatternImpl({
  1. required Token name,
  2. required Token? keyword,
  3. required TypeAnnotationImpl? type,
})

Implementation

DeclaredVariablePatternImpl({
  required this.name,
  required this.keyword,
  required this.type,
}) {
  _becomeParentOf(type);
}