History constructor

History({
  1. bool ignoreChange = false,
  2. int interval = 400,
  3. int maxStack = 100,
  4. bool userOnly = false,
  5. int lastRecorded = 0,
})

Implementation

History({
  this.ignoreChange = false,
  this.interval = 400,
  this.maxStack = 100,
  this.userOnly = false,
  this.lastRecorded = 0,
});