VariableInfo constructor

const VariableInfo({
  1. required String name,
  2. String? declaredType,
  3. required String valueType,
  4. Object? value,
  5. bool isFinal = false,
  6. bool isConst = false,
  7. bool isLate = false,
})

Implementation

const VariableInfo({
  required super.name,
  this.declaredType,
  required this.valueType,
  this.value,
  this.isFinal = false,
  this.isConst = false,
  this.isLate = false,
});