GitStash constructor

const GitStash({
  1. required int index,
  2. required String message,
  3. String? branch,
  4. DateTime? date,
})

Implementation

const GitStash({
  required this.index,
  required this.message,
  this.branch,
  this.date,
});