Change<T> constructor

Change<T>(
  1. T _oldValue,
  2. dynamic _execute(),
  3. dynamic _undo(
    1. T oldValue
    ), {
  4. String description = '',
})

Implementation

Change(
  this._oldValue,
  this._execute(),
  this._undo(T oldValue), {
  this.description = '',
});