GgChange<T> constructor

const GgChange<T>({
  1. required T newValue,
  2. required T oldValue,
  3. required GgChangeType type,
  4. int index = -1,
  5. int oldIndex = -1,
})

Implementation

const GgChange({
  required this.newValue,
  required this.oldValue,
  required this.type,
  this.index = -1,
  this.oldIndex = -1,
});