GitStatusResult constructor

const GitStatusResult({
  1. required GitStatus repoStatus,
  2. String? branch,
  3. String? upstream,
  4. int ahead = 0,
  5. int behind = 0,
  6. List<GitFileChange> changes = const [],
  7. int stashCount = 0,
})

Implementation

const GitStatusResult({
  required this.repoStatus,
  this.branch,
  this.upstream,
  this.ahead = 0,
  this.behind = 0,
  this.changes = const [],
  this.stashCount = 0,
});