VariableUsage constructor

const VariableUsage({
  1. required String name,
  2. required String type,
  3. bool isMutated = false,
  4. required int declarationOffset,
  5. required int declarationLine,
  6. int? firstMutationLine,
})

Implementation

const VariableUsage({
  required this.name,
  required this.type,
  this.isMutated = false,
  required this.declarationOffset,
  required this.declarationLine,
  this.firstMutationLine,
});