CodeChange constructor

const CodeChange({
  1. required String filePath,
  2. required int line,
  3. required String before,
  4. required String after,
  5. String? explanation,
})

Implementation

const CodeChange({
  required this.filePath,
  required this.line,
  required this.before,
  required this.after,
  this.explanation,
});