OrbitUndoEntry constructor

OrbitUndoEntry({
  1. required OrbitStore store,
  2. required Map<String, Object?> before,
  3. required Map<String, Object?> after,
  4. String? label,
})

Implementation

OrbitUndoEntry({
  required this.store,
  required this.before,
  required this.after,
  this.label,
});