PreservedGitState constructor

const PreservedGitState({
  1. required String? remoteBaseSha,
  2. required String? remoteBase,
  3. required String patch,
  4. required List<UntrackedFile> untrackedFiles,
  5. required String? formatPatch,
  6. required String? headSha,
  7. required String? branchName,
})

Implementation

const PreservedGitState({
  required this.remoteBaseSha,
  required this.remoteBase,
  required this.patch,
  required this.untrackedFiles,
  required this.formatPatch,
  required this.headSha,
  required this.branchName,
});