GitFileChange constructor

const GitFileChange({
  1. required String path,
  2. String? oldPath,
  3. required GitFileStatus status,
  4. required bool staged,
})

Implementation

const GitFileChange({
  required this.path,
  this.oldPath,
  required this.status,
  required this.staged,
});