ReplacePatch<T> constructor

ReplacePatch<T>({
  1. required T newValue,
  2. required T oldValue,
})

Implementation

ReplacePatch({
  required this.newValue,
  required this.oldValue,
});